text-decoration 文字的下中上划线
text-decoration: 设置文字的中下上划线
line-through:中划线/删除线
overline:上划线
underline:下划线
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
</head>
<style>
.p-center {text-decoration:line-through}
.p-over {text-decoration: overline}
.p-under {text-decoration: underline}
</style>
<body>
<p class="p-center">中划线</p>
<p class="p-over">上划线</p>
<p class="p-under">下划线</p>
</body>