<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中文網其他相關文章!