What does the double colon (::) mean in CSS?

前端 未结 3 1563
深忆病人
深忆病人 2020-11-29 21:46

What does the double colon (::) mean in CSS?

For example:

input[type=text]::-ms-clear { display: none; }
3条回答
  •  没有蜡笔的小新
    2020-11-29 22:32

    CSS3 changes the way pseudo-elements are selected, as the W3C wanted to distinguish pseudo-classes like a:visited from pseudo-elements like p::first-line. See Advanced CSS Selectors.

提交回复
热议问题