匿名替换元素是与:before
or一起使用的内容:after
请参阅https://developer.mozilla.org/en-US/docs/CSS/content
这是一个例子:
.valid:after {
content: '<';
color: green;
}
.invalid:after {
content: '>';
color: red;
}
问题是 HTML 实体没有被它们的字符替换,我仍然看到它们的代码。
匿名替换元素是与:before
or一起使用的内容:after
请参阅https://developer.mozilla.org/en-US/docs/CSS/content
这是一个例子:
.valid:after {
content: '<';
color: green;
}
.invalid:after {
content: '>';
color: red;
}
问题是 HTML 实体没有被它们的字符替换,我仍然看到它们的代码。