1 用到的知识点是html中 tex-decoration 属性;text-decoration的属性包括 : {text-decoration:overline}
{text-decoration:line-through}
{text-decoration:underline}
{text-decoration:blink}
将价格划掉的效果 用到的是line-through值。
2 下面是tex-decoration 的使用案例,代码可以直接复制到浏览器上面进行运行。
<html>
<head>
<style type="text/css">
h2 {text-decoration: line-through}
</style>
</head>
<body>
<h2>20元</h1>
</body>
</html>
3 下面是案例在浏览器上运行的效果图 :
<li style="text-decoration:line-through">价格</li>或者
<style type="css/text">
.lankii{text-decoration:line-through}//用class引用lankii
#lankii{text-decoration:line-through}//用id引用lankii,这个css效果优先于class
</style>
<span class=“lankii”>价格</span>
<span id=“lankii”>价格</span>