未知的伪元素或伪类:最后

时间:2015-04-28 05:44:36

标签: css3

我正在为我的项目使用HTML5和CSS3。在使用W3C验证器验证我的CSS时,我收到以下错误,说

未知的伪元素或伪类:最后

.point:last {
    margin: 0 !important;
}

如何解决此问题。

2 个答案:

答案 0 :(得分:1)

:last不存在。

只需:last-child:last-of-type:nth-last-child:nth-last-of-type

答案 1 :(得分:0)

:last不是伪元素,:last-child或:nth:last-child这些只是:旧版本的IE不支持最后一个子伪,因此它总是更好的方法{{1}或:first-child,因为这是一个很好的做法。