我正在为我的项目使用HTML5和CSS3。在使用W3C验证器验证我的CSS时,我收到以下错误,说
未知的伪元素或伪类:最后
.point:last {
margin: 0 !important;
}
如何解决此问题。
答案 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
,因为这是一个很好的做法。