- 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 EE 6 企業(yè)級應(yīng)用開發(fā)教程
- ReSharper Essentials
- Building an RPG with Unity 2018
- 零基礎(chǔ)學(xué)單片機C語言程序設(shè)計
- C和C++游戲趣味編程
- Python High Performance Programming
- 利用Python進行數(shù)據(jù)分析
- MySQL程序員面試筆試寶典
- 從Excel到Python數(shù)據(jù)分析:Pandas、xlwings、openpyxl、Matplotlib的交互與應(yīng)用
- Swift High Performance
- Node.js實戰(zhàn):分布式系統(tǒng)中的后端服務(wù)開發(fā)
- ASP.NET Core and Angular 2
- Visual FoxPro程序設(shè)計
- Visual C++.NET(2008)典型案例