如何用CSS改变上划线,下划线以及删除线的颜色

html-css016

如何用CSS改变上划线,下划线以及删除线的颜色,第1张

方法如下:

1:text-line-through-color:设置删除线的颜色。

2:text-overline: text-overline-color: 设置上划线的颜色

3:text-underline:text-underline-color:设置下划线的颜色

<html>

<head>

<title>无标题文档</title>

<style type="text/css">

.box{ border-top:1px solid #F00width:100px}

</style>

</head>

<body>

<div class="box">这是一个测试</div>

</body>

</html>

测试一下是不是你所需要的