一、文字中划线CSS与HTML标签两种
1、CSS属性单词与代码
单词:text-decoration
中划线值
text-decoration:line-through
2、HTML中划线标签
S标签
<s>被加中划线</s>
二、文字中划线divcss实例
<!DOCTYPEhtml>
<html>
<head>
<metahttp-equiv="Content-Type"content="text/html;charset=utf-8"/>
<title>文字加中划线实例</title>
<style>
.zhx{text-decoration:line-through}
</style>
</head>
<body>
<p>原价:¥<spanclass="zhx">200.00</span><br/>
现价:¥120.00</p>
</body>
</html>
效果如下:

CSS设置text-decoration:line-through中划线样式。
对原价的数字,加class引入中划线css样式。
以上就是对css字体划线如何设置?文字加中划线方法的全部介绍,如果您想了解更多有关CSS3教程,请关注PHP中文网。
如需转载,请注明文章出处和来源网址:http://www.divcss5.com/css3-style/c56530.shtml