200字范文,内容丰富有趣,生活中的好帮手!
200字范文 > div html 下边加横线 如何在HTML文本下添加一个虚线下划线

div html 下边加横线 如何在HTML文本下添加一个虚线下划线

时间:2021-09-07 17:51:54

相关推荐

div html 下边加横线 如何在HTML文本下添加一个虚线下划线

How do you underline html text so that the line beneath the text is dotted rather than the standard underline? Preferably, I would like to do this without using a separate CSS file. I'm a novice at html.

解决方案

It's impossible without CSS. In fact, thetag is simply adding text-decoration:underline to the text with the browser's built-in CSS.

Here's what you can do:

u {

border-bottom: 1px dotted #000;

text-decoration: none;

}

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。