CSS :nth-last-of-type(n) 选择器的作用
可以使用 CSS :nth-last-of-type(n) 选择器选择其父元素的第二个 <p> 元素(从最后一个子元素算起)。
示例
你可以尝试运行以下代码来实现 :nth-last-of-type(n) 选择器
<!DOCTYPE html>
<html>
<head>
<style>
p:nth-last-of-type(2) {
background: blue;
color: white;
}
</style>
</head>
<body>
<p>This is demo text 1.</p>
<p>This is demo text 2.</p>
<p>This is demo text 3.</p>
<p>This is demo text 4.</p>
<p>This is demo text 5.</p>
</body>
</html>
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP