文本和下划线之间的空格

发布于 2024-09-06 03:09:53 字数 241 浏览 9 评论 0原文

我正在使用 text-decoration:underline; 但文本和下划线相互接触。我可以增加文本和下划线之间的间距吗?

替代文本这个。我想在文本和下划线之间留出空间。

i am using text-decoration:underline; but text and underline are touching each other.can i increase space between text and underline?

alt text
this one. i want to make space between text and underline.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

≈。彩虹 2024-09-13 03:09:53

使用不同的字体或使用 border-bottom 代替,以便您可以使用 padding-bottom 控制空间。

Either use a different font or use a border-bottom instead so that you can control the space with padding-bottom.

栀梦 2024-09-13 03:09:53

我有同样的问题然后我使用:

.underline_text {
      border-bottom: solid 2px #000000;
      display: inline;
      padding-bottom: 3px;
}

I had same issue then i used :

.underline_text {
      border-bottom: solid 2px #000000;
      display: inline;
      padding-bottom: 3px;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文