<p><p>选项 2:盒状阴影<p>另一种选择是使用框阴影来创建underline:
p { font-size: 100px; font-family: arial; } span { padding: 0 10px; box-shadow: inset 0 -0.4em 0 0 magenta; } span:nth-child(2) { box-shadow: inset 0 -0.55em 0 0 magenta; } span:nth-child(3) { box-shadow: inset 0 -0.7em 0 0 magenta; }
<p> ABC<p>使用这些方法,您可以在文本后面创建粗下划线的错觉,位于基线之上或之下。
以上是如何使用 CSS 在文本后面创建粗下划线?的详细内容。更多信息请关注PHP中文网其他相关文章!