现代的HTML和CSS更倾向于使用CSS样式来控制文本的外观。如果你想要给文本添加下划线,你可以使用CSS的 text-decoration 属性。例如:
<style>
.underline-text {
text-decoration: underline;
}
</style>
<p class="underline-text">这段文本有下划线。</p>
在上述示例中,通过为元素添加类名 .underline-text,你可以使用CSS样式实现下划线效果,而不是使用废弃的 <u> 标签。
转载请注明出处:http://www.zyzy.cn/article/detail/3921/HTML