如何使用 CSS 为多行文本添加可调距离下划线?
css 实现可调距离下划线
在一些设计场景中,我们需要对多行文本添加可调距离的下划线。与默认的 text-decoration: underline; 效果不同,我们需要实现:
- 多行文本支持
- 颜色可调
- 距离可调
解决方案
可以使用 text-decoration 和 text-underline-offset 属性组合来实现此效果。
text-decoration: underline; 负责添加下划线,而 text-underline-offset 则控制下划线与文本基线的距离。正值将下划线移动到文本下方,而负值则将其移动到文本上方。
代码示例
p { text-decoration: underline; text-underline-offset: 5px; }
在元素中设置 text-underline-offset: 5px;,将使下划线向下位移 5 个像素。
调整颜色
可以通过设置 text-decoration-color 属性来调整下划线颜色。例如:
p { text-decoration: underline; text-decoration-color: red; text-underline-offset: 5px; }
这个示例会将下划线颜色设置为红色。
调整距离
通过调整 text-underline-offset 的值可以调整下划线与文本的距离。正值表示下划线在文本下方,而负值则表示在文本上方。例如:
p { text-decoration: underline; text-underline-offset: -2px; }
这个示例会将下划线向上位移 2 个像素。
以上就是如何使用 CSS 为多行文本添加可调距离下划线?的详细内容,更多请关注其它相关文章!