:last-of-type 选择器匹配属于其父元素的特定类型的最后一个子元素的每个元素。
提示:等同于 :nth-last-of-type(1)。
指定父元素的最后一个 p 元素的背景色:
<!DOCTYPE html>
<html>
<head>
<style>
p:last-of-type
{
background:#ff0000;
}
</style>
</head>
<body>
<h1>这是标题</h1>
<p>这是第一个段落。</p>
<p>这是第二个段落。</p>
<p>这是第三个段落。</p>
<p>这是第四个段落。</p>
</body>
</html>
<view>
<text>文本文字</text>
<text>文本文字</text>
<text>文本文字</text>
<!--最后一个元素设置为lable看看效果-->
</view>
text:last-of-type{
color:red;
}