CSS3:first-child和first-of-type的区别

如下代码块是一个html结构,接下来将会使用first-child和first-of-type分别进行css操作,从而找出他们的区别。

<div id="example">
    <p>1p>
    <div>2div>
    <div>3div>
div>
1、first-child
#example>div:first-child {
     
    background-color: pink;
}

first-child没有选择出任何元素,因为他的工作步骤是这样的:

① 把所有#example的children排成一列
② 找到第一个child
③ 第一个child为div则选出

由于第一个child不为div,则查找失败,没有产生css效果

2、first-of-type
#exzmple>div:first-of-type {
     
    background-color: pink;
}

first-of-type选择出了内容为2的div,原因如下:

① 把所有#example中的children中的div排成一列

② 找到第一个child

此例第一个div选择出来,并把background-color改成了pink颜色

你可能感兴趣的:(CSS3和HTML5,css,css3)