CSS syntax consists of two parts: selectors and declarations (rules). The selector tells the browser which objects on the page the style will apply to, and the declaration tells the browser how to render the object specified by the selector; there can be one or countless declarations, and all declarations are placed within a pair of curly brackets "{} ” and then the entirety immediately behind the selector. The declaration must include two parts: attributes and attribute values. The attributes and values need to be separated by colons, and a semicolon is used to mark the end of a declaration. The full format of css syntax is "selector {property:property value;...}".
The operating environment of this tutorial: Windows 7 system, CSS3&&HTML5 version, Dell G3 computer.
Style is the smallest syntax unit of CSS. Each style contains two parts: selector and declaration (rule), as shown in the figure below.
1. Selector (Selector)
The selector consists of the id, class attribute or element name itself of the HTML element and some Special symbols are used to specify which HTML element to define the style for. For example, the selector p means to define the style for all
tags in the page;
2. Declaration
There can be one or countless declarations. These declarations tell the browser how to render the object specified by the selector. All declarations are placed within a pair of curly braces { }
, and then the entire declaration is placed immediately after the selector.
The statement must include two parts: attributes and attribute values, and use a semicolon to mark the end of a statement. The semicolon can be omitted for the last statement in a style.
Attribute: The style name you want to set for the HTML element, consisting of a series of keywords, such as color, border, font, etc., in CSS Provides many attributes, which you can view through the W3C official website;
Value: consists of a numerical value and a unit or keyword, used to control the display effect of a certain attribute, such as the value of the color attribute It can be red or #F1F1F1 etc.
Attributes and values need to be separated by colons
:
. Each combination of attributes and values can be regarded as a statement. Each statement They all need to end with a semicolon;
, and declarations belonging to the same selector need to be wrapped in curly braces{ }
.
selector {property: value;} 选择器{属性:属性值;}
[Example 1]You can define CSS styles according to the syntax rules as shown below:
Up In the syntax example of the figure:
selector
h1
means that the style should be defined for all<h1></h1>
tags in the web page;Attribute
color
represents the font color, and the valueblue
represents setting the font to blue;Attribute
text-align
indicates the alignment of the text, and the valuecente
r indicates that the alignment of the text is set to center alignment.
To make CSS more readable, you can define CSS by placing just one declaration per line of code, like this:
h1 { color: blue; text-align: center; }
Tip: Properties and most values in CSS are case-insensitive, but selectors in CSS are usually case-sensitive, such as the class selectors
.bianchengbang
and.BianChengBang
It represents two different selectors.
Multiple styles can be juxtaposed together without considering how to separate them.
[Example 2] If you define the background color of the paragraph text to be purple, you can define the following style based on the above style.
body{ font-size: 12px; color: #CCCCCC;} p{ background-color: #FF00FF; }
Since the CSS language ignores spaces (except for spaces inside the selector), spaces can be used to format the CSS source code. The above code can be beautified as follows:
body { font-size: 12px; color: #CCCCCC; } p { background-color: #FF00FF; }
This way It is clear at a glance when reading the css source code, which is easy to read and easier to maintain.
Any language requires comments. HTML uses for comments, while CSS uses
/* comment statements*/
. Note.
[Example 3] The following comments can be made for the above style.
body { /*页面基本属性*/ font-size: 12px; color: #CCCCCC; } /*段落文本基础属性*/ p { background-color: #FF00FF; }
CSS Advanced Syntax: Grouping of Selectors
You can group selectors so that grouped selectors can share the same declaration.
Use commas to separate the selectors that need to be grouped. In the example below, we have grouped all heading elements. All title elements are green.
h1,h2,h2,h3,h5,h6 { color: green; }
(Learning video sharing: css video tutorial)
The above is the detailed content of What are the two types of css syntax?. For more information, please follow other related articles on the PHP Chinese website!

在css中,可用list-style-type属性来去掉ul的圆点标记,语法为“ul{list-style-type:none}”;list-style-type属性可设置列表项标记的类型,当值为“none”可不定义标记,也可去除已有标记。

区别是:css是层叠样式表单,是将样式信息与网页内容分离的一种标记语言,主要用来设计网页的样式,还可以对网页各元素进行格式化;xml是可扩展标记语言,是一种数据存储语言,用于使用简单的标记描述数据,将文档分成许多部件并对这些部件加以标识。

在css中,可以利用cursor属性实现鼠标隐藏效果,该属性用于定义鼠标指针放在一个元素边界范围内时所用的光标形状,当属性值设置为none时,就可以实现鼠标隐藏效果,语法为“元素{cursor:none}”。

在css中,rtl是“right-to-left”的缩写,是从右往左的意思,指的是内联内容从右往左依次排布,是direction属性的一个属性值;该属性规定了文本的方向和书写方向,语法为“元素{direction:rtl}”。

在css中,可以利用“font-style”属性设置i元素不是斜体样式,该属性用于指定文本的字体样式,当属性值设置为“normal”时,会显示元素的标准字体样式,语法为“i元素{font-style:normal}”。

转换方法:1、给英文元素添加“text-transform: uppercase;”样式,可将所有的英文字母都变成大写;2、给英文元素添加“text-transform:capitalize;”样式,可将英文文本中每个单词的首字母变为大写。

在css3中,可以用“transform-origin”属性设置rotate的旋转中心点,该属性可更改转换元素的位置,第一个参数设置x轴的旋转位置,第二个参数设置y轴旋转位置,语法为“transform-origin:x轴位置 y轴位置”。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

MinGW - Minimalist GNU for Windows
This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

WebStorm Mac version
Useful JavaScript development tools

Atom editor mac version download
The most popular open source editor

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment
