例如:
input[type=text]::-ms-clear { display: none; }
A pseudo-element is made of two colons (::) followed by the name of the pseudo-element.
Source
它最初只有一个冒号,但被改变以区分它从伪类(如:hover,:first-child,:not等)。最好使用:对于前后的伪元素,因为单冒号具有更好的浏览器支持,即在早期的IE版本中。