CSS选择器

CSS元素选择器

html {color:black;}
h1 {color:blue;}
h2 {color:silver;}

CSS类选择器

*.important {color:red;}
.important {color:red;} 

CSS id选择器

*#important {color:red;}
#important {color:red;} 

CSS属性选择器

选择器描述
[attribute] 用于选取带有指定属性的元素。
[attribute=value] 用于选取带有指定属性和值的元素。
[attribute~=value] 用于选取属性值中包含指定词汇的元素。该值必须是整个单词
[attribute|=value] 用于选取带有以指定值开头的属性值的元素,该值必须是整个单词。
[attribute^=value] 匹配属性值以指定值开头的每个元素。
[attribute$=value] 匹配属性值以指定值结尾的每个元素。
[attribute*=value] 匹配属性值中包含指定值的每个元素。
posted @ 2015-01-30 16:06  anoorshan  阅读(116)  评论(0编辑  收藏  举报