- Developing Windows Store Apps with HTML5 and JavaScript
- Rami Sarieddine
- 159字
- 2021-08-06 17:02:10
Chapter 2. Styling with CSS3
HTML defines the document/page structure and lists the elements it contains. But the job of defining the layout, the positioning, and the styling of those elements is the sole responsibility of CSS. A cascading style sheet (CSS), as the name suggests, is basically a sheet that contains a list of style rules. Each CSS style rule links a selector, which defines what is going to be styled, to a declaration block, which includes a single or a set of styles, which in turn define the effect(s) you want applied to that associated selector. The syntax of a basic style rule would look like this
selector { property: value; property: value; }
Throughout this chapter, we will go over the following topics: CSS3 selectors, Grid and Flexbox, Animation and Transforms, and Media Queries. These topics cover some of the CSS3 features that are frequently used when developing a Windows Store app with JavaScript.
- Java Web及其框架技術
- Java FX應用開發教程
- 編寫高質量代碼:改善Python程序的91個建議
- VMware vSphere 6.7虛擬化架構實戰指南
- Learning Informatica PowerCenter 10.x(Second Edition)
- Learning Apache Mahout Classification
- IBM Cognos Business Intelligence 10.1 Dashboarding cookbook
- JSP程序設計實例教程(第2版)
- 從零開始學Android開發
- 零基礎學HTML+CSS第2版
- Raspberry Pi Blueprints
- Java程序設計教程
- 編程風格:程序設計與系統構建的藝術(原書第2版)
- Spring MVC Cookbook
- 匯編語言程序設計