css伪类 > 选择子元素没有效果, 如下代码

css

.app-homework-arrange .arrange-header .header-item > ul >li:last-child{

    color: red;

    border-bottom: 1px dashed #cac8c9;

}

没有效果

https://img2.mukewang.com/5c80c4a8000123d805310284.jpg

https://img3.mukewang.com/5c80c4a90001408703780671.jpg

有效果

https://img4.mukewang.com/5c80c4ac00017c3d05620294.jpg

https://img1.mukewang.com/5c80c4ad0001582203740654.jpg

红颜莎娜
浏览 898回答 2
2回答

喵喔喔

:last-child概述:last-child CSS 伪类 代表父元素的最后一个子元素。所以 li:last-child 指的是父元素里最后一个元素且为li的元素,而不是父元素里最后一个li元素

墨色风雨

没看懂,你想表达的意思是什么猜测如果是要这种效果的话你可以改为.app-homework-arrange .arrange-header .header-item > ul >li:nth-child(3){color: red;border-bottom: 1px dashed #cac8c9;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript