🌟
CSS選取器
權重
!important ← 10000分
<div style="color=#333;> ← inline style 1000分
ID ← 100分
class ←10分
HTML tag ←1分
:hover
:active
:link
:visted
:before :after
:not(#container)
::first-letter/::first-line
:nth-child(even){}
li:nth-child(3)
:nth-last-child(n)
:nth-of-type(n)
:first-child{}
:last-child{}
ul>li:last-child{}
Discussion