1.last-child .ul li{border:1px solid red;}.ul li:last-child{border:none;} ul最后一个li元素无边框。 2.:not() .ul li:not(:last-child){border:1px solid red;} ul最后一个li元素无边框。 两种作用一样的样式写法,第二种更语义化一些。
.aa > .bb:first-child:not(:last-child){border: solid;}这个选择器为什么选择的不是.aa下的第一个子元素bb下的除了最后一个子元素其他所有子元素?而是选择bb? css 有用关注3收藏 回复 阅读9k 3 个回答 得票最新 某熊猫桑 16.1k61547 发布于 2016-12-10 .aa > .bb:first-child>div:not(:last-c...
.aa > .bb:first-child :not(:last-child) //:not前面加一个空格代表下一级元素,不加空格代表同一级元素 有用 回复 撰写回答 你尚未登录,登录后可以 和开发者交流问题的细节 关注并接收问题和回答的更新提醒 参与内容的编辑和改进,让解决方法与时俱进 注册登录 推荐问题 VUE3中CSS如何使用后台传过来的变量?
CSS3的first-child和last-child选择器用法总结(很容易犯才错误,有几个坑!) 节点的第一个位置(first-child)或最后一个位置(last-child) (一个很大的坑!)使用伪类或伪元素很容易犯的一个错误(尤其在使用scss编写代码时)...first-child官方解释:表示在一组兄弟元素中的第一个元素(最初定义时,所选元素必须有一...
:first-child Allows us to target the first sibling in a group :last-child Allows us to target the last sibling in a group :nth-child(3n) Allows us to target every 3rd sibling in a group :nth-child(n + 2) Allows us to target every sibling in a group starting from the 2nd sibling...
.menu-function li:not(:last-child) span?.menu-function为class标签 下面的li 不等于not(:last-child) 最后一个 下面的span标签添加CSS样式 .menu-function li a:before,.drop-down button[type="button"]:before?//before伪元素在元素之前添加内容 逗号分隔样式 逗号代表【或】.menu-function...
百度试题 题目CSS3中,()选择器用于为父元素中的第一个子元素设置样式。 A. :last-child B. :first-child C. :not D. :nth-child(n) 相关知识点: 试题来源: 解析 B.:first-child 反馈 收藏
百度试题 结果1 题目CSS3中,( )选择器用于为父元素中的第一个子元素设置样式。——[单选题] A. last-child B. first-child C. not D. nth-child(n) 相关知识点: 试题来源: 解析 B 反馈 收藏
虽然最近已经开始发布实现,但要得到广泛支持至少还需要几年时间(截至2018年4月,在成为第一个发布的...
不建议直接写在代码里,那么css就能轻而易举的解决这个问题,这是不是很给力,它就是“:nth-child”...