浅谈空标签对伪元素的支持
程序员文章站
2022-07-06 23:29:17
...
【前言】
最近学生项目遇到一个问题,空标签(空标签详见浅谈HTML空标签)无法使用伪元素。
【主体】
原因分析:作为DOM元素,伪元素都是在容器内进行渲染的。input无法容纳其他元素,因此它不支持伪元素。
规范:
Authors specify the style and location of generated content with the :before and :after pseudo-elements. As their names indicate, the :before and :after pseudo-elements specify the location of content before and after an element's document tree content. The 'content' property, in conjunction with these pseudo-elements, specifies what is inserted.
翻译:
作者用:before和:after伪元素指定生成的内容的样式和位置。 如其名所示,:before和:after伪元素指定了一个元素文档树内容之前和之后的内容。 'content'属性,与这些伪元素联用,指定了插入的内容。
【通俗理解】
通俗理解:「一个元素文档树内容之前和之后的内容」就是指这个元素是要可以插入内容的,也就是说这个元素要是一个容器。
input,img,iframe等元素都不能包含其他元素,所以不能通过伪元素插入内容。至于Chrome 中checkbox和radio可以插入,那应该是Bug了,要么就是姿势不对了。
.
上一篇: html表格