gpt4 book ai didi

css - HR 标签中间的图像

转载 作者:太空宇宙 更新时间:2023-11-03 20:11:24 26 4
gpt4 key购买 nike

我需要类似这个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;
}

JSFiddle

但我需要一个图像而不是 ASCII 符号。我试过将内容设为“”,将背景设为背景图片,但我运气不好。

最佳答案

而不是

content: '';

使用 url(<url>)符号:

content: url(http://i.stack.imgur.com/yUzqW.png);

hr.style-eight {
margin-top: 2em;
padding: 0;
border: none;
border-top: medium double #333;
color: #333;
text-align: center;
}
hr.style-eight:after {
content: url(http://i.stack.imgur.com/yUzqW.png);
display: inline-block;
position: relative;
top: -0.7em;
font-size: 1.5em;
padding: 0 0.25em;
background: white;
}
<hr class="style-eight" />

外部 JS Fiddle demo , 用于实验。

引用资料:

关于css - HR 标签中间的图像,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32014696/

26 4 0