0


css 下划线

在 CSS 中,可以使用 "text-decoration" 属性来设置文本的下划线。例如:

p {
  text-decoration: underline;
}

这会使所有的段落文本都带有下划线。你也可以使用 "text-decoration-style" 属性来设置下划线的样式,例如实线、虚线或点线等。

你还可以使用 "border-bottom" 属性来设置下划线,例如:

p {
  border-bottom: 1px solid black;
}

这会在段落文本下方添加一条 1 像素宽、黑色实线的下划线。

标签: css 前端 html

本文转载自: https://blog.csdn.net/weixin_42587866/article/details/129456795
版权归原作者 Clown爱电脑 所有, 如有侵权,请联系我们删除。

“css 下划线”的评论:

还没有评论