- 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.
- Practical Data Analysis Cookbook
- 程序員修煉之道:程序設(shè)計(jì)入門30講
- .NET之美:.NET關(guān)鍵技術(shù)深入解析
- 深入理解Bootstrap
- Vue.js快速入門與深入實(shí)戰(zhàn)
- Python自動化運(yùn)維快速入門
- 軟件測試工程師面試秘籍
- OpenCV 3和Qt5計(jì)算機(jī)視覺應(yīng)用開發(fā)
- 數(shù)據(jù)結(jié)構(gòu)簡明教程(第2版)微課版
- Spring Cloud、Nginx高并發(fā)核心編程
- C語言程序設(shè)計(jì)立體化案例教程
- 人人都懂設(shè)計(jì)模式:從生活中領(lǐng)悟設(shè)計(jì)模式(Python實(shí)現(xiàn))
- Building Android UIs with Custom Views
- STM8實(shí)戰(zhàn)
- JavaScript編程精解(原書第2版)