一、X:nth-child(n)
Example Source Code : li:nth-child(3) { color: red; } |
二、X:nth-last-child(n)
Example Source Code : li:nth-last-child(2) { color: red; } |
三、X:nth-of-type(n)
Example Source Code: ul:nth-of-type(3) { border: 1px solid black; } |
四、X:nth-last-of-type(n)
Example Source Code : ul:nth-last-of-type(3) { border: 1px solid black; } |
五、X:first-child
Example Source Code: ul li:first-child { border-top: none; } |
六、X:last-child
Example Source Code : ul > li:last-child { color: green; } |
七、X:only-child
Example Source Code: div p:only-child { color: red; } |
八、X:only-of-type
Example Source Code: li:only-of-type { font-weight: bold; } |
九、X:first-of-type
Example Source Code : ul:first-of-type{ font-weight: bold; } |
热门源码