这是我正在查看的全部代码,这里是它的上下文:
http://acidmartin.wordpress.com/2011/02/24/custom-crossbrowser-styling-for-checkboxes-and-radio-buttons
input[type="radio"] + span::before { content: ""; display: inline-block; width: 20px; height: 20px; background: url("sprite.png") no-repeat -20px 0; vertical-align: middle; }
我对这个工作有一个很好的了解,但我不明白为什么有两个冒号,而不是跨越之前的冒号.
之前的选择器,从我读过的应该使用一个冒号.
http://www.w3schools.com/cssref/sel_before.asp
在w3c上,找不到任何两个冒号的选择器,也不能找出为什么span会有一个冒号跟随它,除了前面的冒号之前.
解决方法
这是一个伪元素,由
CSS Selectors Level 3规范定义:
The
::before
and::after
pseudo-elements can be used to describe generated content before or after an element’s content.
它与由第2级规范定义的单冒号语法实际上相同. 3级规范引入了一个额外的冒号来区分伪元素和伪类(使用单个冒号).
两种语法都适用于较新的浏览器,但较旧的浏览器将无法识别较新的浏览器.
有关更多细节,您可以从3级规格看grammar,其中规定:
‘::’ starts a pseudo-element,‘:’ a pseudo-class