在MDN中这么描述的:
CSS伪类:only-child
匹配没有任何兄弟元素的元素。等效的选择器还可以写成 :first-child:last-child
或者:nth-child(1):nth-last-child(1)
,当然,前者的权重会低一点。
/* Selects each <p>, but only if it is the */
/* only child of its parent */
p<a target="_blank" href="https://www.xuemy.cn/archives/tag/only-child" title="View all posts in :only-child">:only-child</a> {
background-color: lime;
}
© 版权声明
THE END
暂无评论内容