【发布时间】:2015-08-14 16:29:48
【问题描述】:
我需要类似这个 hr 标签的东西
hr.style-eight {
padding: 0;
border: none;
border-top: medium double #333;
color: #333;
text-align: center;
}
hr.style-eight:after {
content: "§";
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
background: white;
}
但我需要一个图像而不是 ASCII 符号。我尝试将内容“”和背景设置为背景图像,但我没有运气。
【问题讨论】:
-
content:url(…)– developer.mozilla.org/en/docs/Web/CSS/content -
您想在一个
<hr>标记中获得所有信息吗?因为你可以试试<hr> <img src="" /> <hr> -
不是重复的。这是图片,不是文字。
标签: css