How can I correctly select the first or the last child with CSS?(如何正确选择CSS的第一个或最后一个子项?)
本文介绍了如何正确选择CSS的第一个或最后一个子项?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我希望使用CSS选择第一个和最后一个子级,但它不起作用。请看一下我的小提琴,帮帮我:
.area {
height: 100px;
width: 100px;
}
.area:first-child {
background-color: red;
}
.area:last-child {
background-color: green;
}
<div class="area">1</div>
<div class="area">2</div>
<div class="area">3</div>
<div class="area">4</div>
https://jsfiddle.net/rbw8dpsb/1/
推荐答案
我建议您添加一个容器,因为在您的代码中它们是body
的子级,但您不知道last-child
或first-child
的first-child
,因为您可能有其他元素,如script
标签或其他动态添加的标签(如此处的代码片段或使用jsfiddle或任何其他在线编码工具)。
.area {
height: 100px;
width: 100px;
}
.area:first-child {
background-color: red;
}
.area:last-child {
background-color: green;
}
<div>
<div class="area">1</div>
<div class="area">2</div>
<div class="area">3</div>
<div class="area">4</div>
</div>
这是一个屏幕截图,显示您运行代码段时身体内的内容:
您可能清楚地注意到,在body
的末尾添加了div
,last-child
。添加容器将避免您处理随机设置和添加的隐藏元素。
这篇关于如何正确选择CSS的第一个或最后一个子项?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:如何正确选择CSS的第一个或最后一个子项?
基础教程推荐
猜你喜欢
- 动态更新多个选择框 2022-01-01
- 当用户滚动离开时如何暂停 youtube 嵌入 2022-01-01
- 我什么时候应该在导入时使用方括号 2022-01-01
- 响应更改 div 大小保持纵横比 2022-01-01
- 角度Apollo设置WatchQuery结果为可用变量 2022-01-01
- 在for循环中使用setTimeout 2022-01-01
- 悬停时滑动输入并停留几秒钟 2022-01-01
- 在 JS 中获取客户端时区(不是 GMT 偏移量) 2022-01-01
- Karma-Jasmine:如何正确监视 Modal? 2022-01-01
- 有没有办法使用OpenLayers更改OpenStreetMap中某些要素 2022-09-06