在CSS中,我们可以通过textdecoration属性来给文本添加下划线。下面是一个示例代码:这是一个带有下划线的段落 上面的代码中,我们在style属性中设置了textdecoration为und...
在CSS中,我们可以通过text-decoration属性来给文本添加下划线。下面是一个示例代码:
<p style="text-decoration: underline;">这是一个带有下划线的段落</p> <p style="text-decoration: line-through;">这是一个带有删除线的段落</p> <style>
p {
text-decoration: underline;
}
</style>
<p>这是一个带有下划线的段落</p>