css选择器——:first/last-of-type

来源:互联网 发布:声音方位识别 软件 编辑:程序博客网 时间:2024/05/29 18:34

之前介绍了,兄弟同级选择器——:nith-of-type,现在咱们继续了解下针对父级的选择器first-of-type,last-of-type。

测试代码块

效果图.

分析

:first-of-type选择器匹配元素其父级是特定类型的第一个子元素。等价于:nth-of-type(1);

 :last-of-type选择器匹配元素其父级是特定类型的最后一个子元素,等价于nth-last-of-type(1); 

这里的父级默认是body元素,如果有个div包含p标签则此时的first-of-type同样适用,即对div中的第一个p元素进行css处理 ,last-of-type同理。

0 0
原创粉丝点击