1.單獨指定第一個子元素、最後一個子元素的樣式css
<style type="text/css">spa
li:first-child{ast
background:yellow;樣式
}co
li:last-child{background
background:blue;
}
</style>
2.對指定序號的子元素使用樣式
<style type="text/css">
li:nty-child(2){
background:yellow;
}//對第二個子元素設定背景色
li:nth-last-child(2){
background:blue;
}//對倒數第二個子元素設定背景色
</style>
3.對全部第偶數個子元素或者第奇數個子元素使用樣式
<style type="text/css">
li:nth-child(odd){
background:yellow;
}
li:nth-child(even){
background:blue
}
</style>