1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
< html > < head > < title >[2016-01-16][CSS][定义样式表(样式选择器)]</ title > < meta charset = "utf-8" > < style type = "text/css" > .class1{ color:red; } /* <!--优先级:ID>Class>HTML--> <!--定义class--> <!--定义以.开始--> <!--花括号内,属性:属性值;(必须以分尾)--> 号结 <!--ID定义--> <!--ID定义以#开头--> */ #ID1{ color:blue; } /* <!--组合选择器--> */ h1,h2,h3{ color:green; } /* <!--伪元素选择器--> */ a:visited { color:red; } </ style > </ head > < body > < div class = "class1"> calss的使用 </ div > < div id = "ID1" > ID的使用 </ div > < div > < h1 >组合选择器h1</ h1 > < h2 >h2</ h2 > < h3 >h3</ h3 > </ div > < div > </ div > </ body > </ html > |
[2016-01-16][CSS][定义样式表(样式选择器)]
原文:http://www.cnblogs.com/qhy285571052/p/5136441.html