【发布时间】:2013-10-04 13:34:13
【问题描述】:
我的html是:
<html>
<body>
<div id="example">this is example</div>
</body>
<html>
我的css是:
#example{text-decoration: line-through;color:#ccc;}
我得到这样的输出
但我想要这样
但我不能.帮我这样做。
【问题讨论】:
我的html是:
<html>
<body>
<div id="example">this is example</div>
</body>
<html>
我的css是:
#example{text-decoration: line-through;color:#ccc;}
我得到这样的输出
但我想要这样
但我不能.帮我这样做。
【问题讨论】:
颜色适用于线条和文本。你需要像嵌套一样。
<span style="text-decoration: line-through; color: red;">
<span style="color: #CCC;">text with red linethrough and black text</span>
</span>
来源:http://www.savio.no/artikler/a/335/different-font-color-than-line-through-color-with-css
【讨论】:
这是一个例子,它可以正常工作。
HTML:
<div id="example">
this is example
<span></span>
</div>
CSS:
#example{
color:#ccc;
font-size: 20px;
position: relative;
display: inline-block;
}
#example span {
position: absolute;
width: 100%;
border-top: 1px solid red;
left: 0;
top: 50%;
}
【讨论】: