-
*:通用元素选择器
-
#ID:ID选择器
-
#container { width: 960px; margin: auto; }
ID选择器是CSS中效率最高的选择器,使用的时候要保证ID的唯一性。
兼容性
- IE6+
- Firefox
- Chrome
- Safari
- Opera
-
-
.class:类选择器
-
.error { color: red; }
类选择器效率低于ID选择器,一个页面可以有多个class,并且class可以放在不同的标签中使用。
兼容性
- IE6+
- Firefox
- Chrome
- Safari
- Opera
-
-
X Y:标签组合选择器
-
li a { text-decoration: none; }
标签组合选择器也是常用的选择器。
兼容性
- IE6+
- Firefox
- Chrome
- Safari
- Opera
-
-
X:标签选择器
-
a { color: red; } ul { margin-left: 0; }
如果你只是想要页面中的某个标签样式改变,可以选择使用标签选择器。
兼容性
- IE6+
- Firefox
- Chrome
- Safari
- Opera
-
-
伪类选择器 X:visited and X:link
-
a:link { color: red; } a:visted { color: purple; }
伪类选择器,最常用的为A标签
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X + Y:毗邻元素选择器
-
ul + p { color: red; }
毗邻元素选择器,匹配的是所有紧随X元素之后的同级元素Y
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X > Y:子元素选择器
-
div#container > ul { border: 1px solid black; }
匹配#container下的所有子元素。
关于X>Y
和X Y
的区别请看下面的html实例:<div id="container"> <ul> <li> List Item <ul> <li> Child </li> </ul> </li> <li> List Item </li> <li> List Item </li> <li> List Item </li> </ul> </div>
选择器
#container > ul
只会匹配到第一个UL,也就是#container的子元素UL,而不是li里面的ul,但是div ul
则可以匹配到所有DIV里面的ul。兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
跟随同级元素选择器 X ~ Y:
-
ul ~ p { color: red; }
匹配任何在X元素之后的同级P元素。也就是选择了UL之后的同级所有的元素。
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[title]:属性选择器
-
a[title] { color: green; }
匹配具有某属性的标签,例如实例中是匹配具有title属性的a标签。
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[href="foo"]
-
a[href="http://www.js8.in"] { color: #1f6053; /* nettuts green */ }
也属于属性选择器,匹配属性中为某个值的标签。例如实例中匹配的为
href="http://www.js8.in"
的a标签,而其他链接的a标签不选择。兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[href*="nettuts"]
-
a[href*="tuts"] { color: #1f6053; /* nettuts green */ }
属于属性选择器,匹配href中所有含有tuts的标签。正则匹配
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[href^="http"]
-
a[href^="http"] { background: url(path/to/external/icon.png) no-repeat; padding-left: 10px; }
与上面的属相选择标签类似,但是匹配的以http开头的A标签,正则匹配
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[href$=".jpg"]
-
a[href$=".jpg"] { color: red; }
匹配属性中以.jpg结尾的标签,正则匹配,也是属性选择器的一种
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[data-*="foo"]
-
如果你要匹配所有的图片链接,你可以通过下面的CSS来实现:
a[href$=".jpg"], a[href$=".jpeg"], a[href$=".png"], a[href$=".gif"] { color: red; }
但是如果我们给a标签添加一个data-filetype属性,我们就可以使用下面的CSS来快速的选择我们需要匹配的标签了。
<a href="path/to/image.jpg" data-filetype="image"> Image Link </a> </html> <pre lang="css">a[data-filetype="image"] { color: red; }
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X[foo~="bar"]
-
a[data-info~="external"] { color: red; } a[data-info~="image"] { border: 1px solid black; }
匹配属性中具有多个空格分隔的值、其中一个值等于“bar”的X元素,例如下面的例子:
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X:checked
-
X:after
-
.clearfix:after { content: ""; display: block; clear: both; visibility: hidden; font-size: 0; height: 0; } .clearfix { *display: inline-block; _height: 1%; }
before
和after
是在选择的标签之前或者之后插入内容,一般用于清除浮动,但是对于IE6、IE7是不可用的。兼容性
- IE8+
- Firefox
- Chrome
- Safari
- Opera
-
-
X:hover
-
div:hover { background: #e3e3e3; }
最常用的就是A标签了,但是在IE6浏览器下除了A标签之外,其他标签
div:hover
不匹配。兼容性
- IE6+(IE6只可以使用在A标签中)
- Firefox
- Chrome
- Safari
- Opera
-
-
X:not(selector)
-
*:not(p) { color: green; }
选择除了()中选择器之外的标签元素。
兼容性
- IE9
- Firefox
- Chrome
- Safari
- Opera
-
-
X::pseudoElement
-
p::first-line { font-weight: bold; font-size: 1.2em; } p::first-letter { float: left; font-size: 2em; font-weight: bold; font-family: cursive; padding-right: 2px; }
分别用于匹配元素的第一行和第一个字母。看实例:
兼容性
- IE6+
- Firefox
- Chrome
- Safari
- Opera
-
-
X:nth-child(n)
-
li:nth-child(3) { color: red; }
匹配X元素中从头数第几个标签,例如上面的代码是匹配的是第三个li标签。
兼容性
- IE9
- Firefox 3.5+
- Chrome
- Safari
- Opera
-
-
X:nth-last-child(n)
-
li:nth-last-child(2) { color: red; }
与上一个选择器相反,这个选择器是倒序匹配第几个标签,上面的代码的意思是匹配倒数第二个li标签
兼容性
- IE9
- Firefox 3.5+
- Chrome
- Safari
- Opera
-
-
X:nth-of-type(n)
-
ul:nth-of-type(3) { border: 1px solid black; }
与
:nth-child()
作用类似,但是仅匹配使用同种标签的元素兼容性
- IE9
- Firefox 3.5+
- Chrome
- Safari
- Opera
-
-
X:nth-last-of-type(n)
-
ul:nth-last-of-type(3) { border: 1px solid black; }
与
:nth-last-child()
作用类似,但是仅匹配使用同种标签的元素兼容性
- IE9
- Firefox 3.5+
- Chrome
- Safari
- Opera
-
-
X:first-child
-
ul li:first-child { border-top: none; }
匹配其父元素的第n个子元素,第一个编号为1
兼容性
- IE7+
- Firefox
- Chrome
- Safari
- Opera
-
-
X:last-child
-
ul > li:last-child { color: green; }
匹配其父元素的倒数第n个子元素,第一个编号为1
兼容性
- IE9
- Firefox
- Chrome
- Safari
- Opera
-
-
X:only-child
-
div p:only-child { color: red; }
匹配父元素下仅有的一个子元素,等同于:first-child:last-child或 :nth-child(1):nth-last-child(1)
兼容性
- IE9
- Firefox
- Chrome
- Safari
- Opera
-
-
X:only-of-type
-
li:only-of-type { font-weight: bold; }
匹配父元素下使用同种标签的唯一一个子元素,等同于:first-of-type:last-of-type或 :nth-of-type(1):nth-last-of-type(1)
兼容性
- IE9
- Firefox 3.5+
- Chrome
- Safari
- Opera
-
-
X:first-of-type
-
li:only-of-type { font-weight: bold; }
匹配父元素下使用同种标签的第一个子元素,等同于:nth-of-type(1)
兼容性
- IE9
- Firefox 3.5+
- Chrome
- Safari
- Opera
-
转至 http://net.tutsplus.com/tutorials/html-css-techniques/the-30-css-selectors-you-must-memorize/ 这里