CSS :first-child 选择器

实例

每个 <p> :

p:first-child
{ 
background-color:yellow;
}

:first-child 选择器。

注释:对于 IE8 的 :first-child <!DOCTYPE>

:first-child 。

- 实例

例子 1

选择每个 <p> 中的每个 <i> 中的 <p>

p:first-child i
{
background:yellow;
}

例子 2

的第一个 <li> 其样式:

li:first-child
{
background:yellow;
}

例子 3

设置每个 <ul> 其样式:

ul>:first-child
{
background:yellow;
}

相关页面

CSS 教程:CSS 伪类