如何设置HTML中的上划线或下划线

html-css010

如何设置HTML中的上划线或下划线,第1张

设置css样式:

text-decoration: underline 下划线

text-decoration: line-through 删除线

text-decoration: overline 上划线

可以用css处理,如果只是为了显示的话

<style>

i

{

font-style:normal

border-top:1px solid #000

}

</style>

<html>

<head></head>

<body><i>X<i></body>

</html>