【发布时间】:2019-09-24 23:57:15
【问题描述】:
我想在 BR 标签后添加一个 em-space 以达到文本缩进的效果。但以下 STYLE 不适用于我的 Chrome。
或者,还有什么其他方式可以实现BR标签后的文本缩进效果?
<style>
br::after {
content: " ";
}
</style>
<p>Note:<br>For this selector to work in IE8, a DOCTYPE must be declared, and you must use the old, single-colon CSS2 syntax (:after instead of ::after).</p>
【问题讨论】:
-
请注意,
::after插入为所选元素的last child,而不是元素之后。
标签: html css line-breaks text-indent