:: last-child选择器在HTML5中无法正常工作

last-child选择器用于选择父项的最后一个子元素。它不能用于选择给定父元素下具有特定类的最后一个子元素。

使用background-color设置最后一个子li元素的样式-

li:last-child{
   background-color: blue;
}

如果该元素不是最后一个元素,则会产生问题。

让我们看一个<a>的例子-

如果您的选择器是a:last-child,则可以使用-

<div>
   <a></a>
   <a>This will be selected</a>
</div>