html – 首先使用css定位在`ul`内部具有特定类的`li`

前端之家收集整理的这篇文章主要介绍了html – 首先使用css定位在`ul`内部具有特定类的`li`前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

是否有可能将第一个具有特定类的目标定位在ul内?例如 :

 

有可能吗?

最佳答案
使用:first-child伪类和adjacent sibling selector +.

.a:first-child,/* Select the first child element */
.a + .b { /* Select the first element with 'b' class */
  background-color: dodgerblue;
}

猜你在找的HTML相关文章