@Dale-Lin
2017-09-28T17:51:37.000000Z
字数 540
阅读 804
CSS
a:link{}
a:visited{}
a:hover{}
a:active{}
:focus
伪类(p、input、focus、section等文字字段)
input:focus{}
:target
伪类
#more_info:target{}
:not
伪类 :not(selector){}
:first-child
和 :last-child
<ol class="result">
<li>My Fast Pony</li>
<li>Steady Trotter</li>
<li>Slow Ol' Nag</li>
</ol>
ol.result li:first-child{color: blue;}
ol.result li:last-child{color: red;}
:nth-child(an+b)