css3 - css的伪类作用?
问题描述

如图 这是我在刷面试题得时候 碰见的 想问一下大神 有什么具体的区别?反正我写的时候 是没有发现 至于作用我还是知道的
问题解答
回答1:单冒号(:)用于CSS3伪类,双冒号(::)用于CSS3伪元素。W3C关于CSS3选择器的规范中有一段描述:
A pseudo-element is made of two colons (::) followed by the name of the pseudo-element.
This :: notation is introduced by the current document in order to establish a discrimination between pseudo-classes and pseudo-elements. For compatibility with existing style sheets, user agents must also accept the previous one-colon notation for pseudo-elements introduced in CSS levels 1 and 2 (namely, :first-line, :first-letter, :before and :after). This compatibility is not allowed for the new pseudo-elements introduced in CSS level 3.
简单翻译一下,大意就是,伪元素由双冒号和伪元素名称组成。双冒号是在当前规范中引入的,用于区分伪类和伪元素。但是伪类兼容现存样式,浏览器需要同时支持旧的伪类,比如:first-line、:first-letter、:before、:after等。
那么现在就可以完整的回答标题中的问题了,对于CSS2之前已有的伪元素,比如:before,单冒号和双冒号的写法::before作用是一样的。
所以,如果你的网站只需要兼容webkit、firefox、opera等浏览器,建议对于伪元素采用双冒号的写法,如果不得不兼容IE浏览器,还是用CSS2的单冒号写法比较安全。
回答2:这种问题百度就知道了
参见:
伪元素 https://developer.mozilla.org/zh-CN/docs/Web/CSS/Pseudo-elements
伪类 https://developer.mozilla.org/zh-CN/docs/Web/CSS/Pseudo-classes
相关文章:
1. docker start -a dockername 老是卡住,什么情况?2. 小白问题getDay()3. 请问一下各位老鸟 我一直在学习独孤九贱 现在是在tp5 今天发现 这个系列视频没有实战4. 求救一下,用新版的phpstudy,数据库过段时间会消失是什么情况?5. 关于docker下的nginx压力测试6. 老师,请问我打开browsersync出现这个问题怎么解决啊?7. golang - 用IDE看docker源码时的小问题8. python - 多线程小白求问这样的IP要怎么实现多线程print?9. 是真的吗? Linux 下 mysql 使用 localhost 比 127.0.0.1 快10. mysql问题请教

网公网安备