网站首页 > 技术文章 正文
假设我们有以下 HTML:
<div>
<h1>First h1</h1>
<h1>Second h1</h1>
<p>First paragraph</p>
<p>Second paragraph</p>
</div>
如果我们想定位 div 的最后一个子元素,我们将使用:
div :last-child {
color: red;
}
/*note the white space between div and :last-child*/
如果我们只想定位 div 的最后一个子元素(仅当该子元素是一个p元素时),那么我们将拥有:
div p:last-child {
color: red;
}
另一方面,last-of-type将定位该类型元素的最后一次出现。因此,假设我们要定位h1div 中最后一次出现的元素:
div h1:last-of-type {
color: blue;
}
不一定last-of-type是最后一个孩子。
这些选择器还有许多补充替代方案,例如 : 、:first-of-type等。:nth-last-of-typefirst-child
猜你喜欢
- 2024-11-09 「项目实战」.作家管理系统之Web应用(四)
- 2024-11-09 jQuery 单引号和双引号区别 js单双引号转义
- 2024-11-09 jQuery的DOM操作 jquery对象和dom对象
- 2024-11-09 CSS2与CSS3中常用的伪类汇总大全 css伪类hover
- 2024-11-09 自动化测试:Selenium八大元素定位简单介绍
- 2024-11-09 想让AI 驱动 UI 测试?大佬推荐这个自动化工具!
- 2024-11-09 CSS怎么选择除了第一个子元素外的其余同级子元素
- 2024-11-09 js函数--倒计时模块+无缝滚动 js实现倒计时60秒的简单代码
- 2024-11-09 Web前端开发-CSS中伪类和伪元素 css3伪类和伪元素
- 2024-11-09 关于前端开发的20篇文档与指南 前端开发方法
- 标签列表
-
- content-disposition (47)
- nth-child (56)
- math.pow (44)
- 原型和原型链 (63)
- canvas mdn (36)
- css @media (49)
- promise mdn (39)
- readasdataurl (52)
- if-modified-since (49)
- css ::after (50)
- border-image-slice (40)
- flex mdn (37)
- .join (41)
- function.apply (60)
- input type number (64)
- weakmap (62)
- js arguments (45)
- js delete方法 (61)
- blob type (44)
- math.max.apply (51)
- js (44)
- firefox 3 (47)
- cssbox-sizing (52)
- js删除 (49)
- js for continue (56)
- 最新留言
-