标签:
在这一篇中,主要总结一下CSS中的选择器。
CSS中的选择器主要包括:
(1) 选择器分组:可以将任意多个选择器分组在一起,中间以 ‘,‘ 隔开。
例:body, h2, p, table, th, td, pre, strong, em { color : gray ; }
(2) 类选择器的几种用法
例:p.important {color:red;}
匹配 class为 important 的所有 p 元素,但是其他任何类型的元素都不匹配。
例:.important.warning {background:silver;}
匹配同时具有这两个class的元素。
(3) 属性选择器:根据元素的属性匹配元素
例:a[title] {color:red;} 只对有 title 属性的 a 元素应用样式。
例:input[name=‘basketball‘] 只选择有特定属性值的元素。
例:对于<p class="important warning">This paragraph is a very important warning.</p>,
使用 p[class="important warning"] {color: red;}
例:对于<p class="important warning">This paragraph is a very important warning.</p>,
使用 p[class~="important"] {color: red;} 根据属性值中的词列表的某个词进行选择。
input[name^=‘foot‘]:匹配给定的属性是以某些值开始的元素。
input[name$=‘ball‘]:匹配给定的属性是以某些值结尾的元素。
input[name*=‘sket‘]:匹配给定的属性是以包含某些值的元素。
(4) 后代选择器
例:h1 em {color:red;},匹配h1后代中所有em
例:h1 > strong {color:red;},选择只作为 h1 元素子元素的 strong 元素。
(5) 相邻兄弟选择器
例:h1 + p {margin-top:50px;},匹配相同父元素下,h1之后出现的p元素。
(6) 伪类
如a链接的 :visited, :hover等,input的:focus, :checked, :disabled 等,:first-child, :first-of-type, :nth-of-type, nth-child, :before, :after 等。
标签:
原文地址:http://www.cnblogs.com/telnetzhang/p/5551461.html