我正在应用删除标记 p>
<s>$5,000,000</s>
但线路太低了......从底部开始大约1/4,而不是从中间开始。我可以用任何方式修改它,以便在中间进行一些修改吗?
答案 0 :(得分:9)
你不能使用strike标签或text-decoration:line-through
样式。线路位置是内置的。你可以为此推出自己的风格,但这将是一个巨大的PITA。
答案 1 :(得分:8)
我已经编写了这段代码,让您可以完全控制穿透位置和风格:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<title>Test</title>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<style type="text/css">
.mark {
border-bottom: 1px solid #000;
top: -9px; /* Tweak this and the other top in equal, but opposite values */
position: relative;
}
.offsetMark {
position: relative;
top: 9px; /* Tweak this and the other top in equal, but opposite values */
}
</style>
</head>
<body>
<div>
<p class="strikethrough">This is an <span class="mark"><span class="offsetMark">example</span></span> of how I'd do it.</p>
</div>
</body>
</html>
答案 2 :(得分:2)
没有使用打击标记,没有。它是浏览器渲染引擎的一部分。对我来说(在Chrome中),线条会在中间呈现。
答案 3 :(得分:2)
11 年后,这是一项非常简单的任务:
s{
text-decoration: none;
position: relative;
}
s::before{
content: '';
width: 100%;
position: absolute;
right: 0;
top: calc( 50% - 1.5px );
border-bottom: 3px solid rgba(255,0,0,0.8);
}
old price: <s>$99.95</s>
答案 4 :(得分:1)
此解决方案允许填充,并使用csss line-through属性 它适用于firefox,而chrome / safari无论如何都能正常运行。
div.hbPrice span.linethroughOuter {
padding: 0 10px 0 0;
text-decoration: line-through;
position: relative;
}
div.hbPrice span.linethroughInner {
position: relative;
}
/* Firefox only. 1+ */
div.hbPrice span.linethroughOuter, x:-moz-any-link { bottom: 2px; }
div.hbPrice span.linethroughInner, x:-moz-any-link { top: 2px; }
并且标记类似......
<div class="hbPrice"><span class="linethroughOuter"><span class="linethroughInner">£1,998</span></span> £999</div>
另一种解决方案是添加一条线的背景图像,并使其与文本颜色相同。
答案 5 :(得分:0)
你可以这样做:
<div class="heading"><span>Test heading</span></div>
.heading {
position: relative;
text-align:center;
}
.heading:before {
background-color: #000000;
content: "";
height: 1px;
left: 0;
position: absolute;
right: 0;
top: 50%;
}
.heading span {
background-color: #fff;
display: inline-block;
padding: 0 2px;
position: relative;
text-align: center;
}