css 多行文本实现距离可调的下划线
在网页设计中,需要对多行文本添加下划线,并可调整其颜色和与文本的距离。对此,可用 css 的 text-decoration 和 text-underline-offset 属性实现。
实现步骤:
p { text-decoration: underline; color: blue; }
p { text-underline-offset: 5px; }
完整代码:
<p>多行文本</p> <p>颜色可调(下划线的颜色可调整)</p> <p>距离可调(文字和线的位置可调)</p>
p { text-decoration: underline; color: blue; text-underline-offset: 5px; }
在线示例:
[查看演示](https://jsbin.com/kurekinote/...,output)