【发布时间】:2019-09-07 17:07:00
【问题描述】:
我正在尝试使用 CSS 选择器 :before 将图像放在文本之前。这是我的sn-p
但似乎对齐方式有点偏离。文本未与图像垂直对齐。
.resource {
color: #007f00;
display: inline;
margin-top: 20px;
}
.resource:before {
content: '';
width: 26px;
height: 20px;
display: inline-block;
margin-right:5px;
background-size: contain;
background-repeat: no-repeat;
margin-top: 19px;
background-image:url("https://www.w3schools.com/bootstrap/cinqueterre.jpg");
}
<div class="resource">Presentation</div>
我在:before 中添加了margin-top,但它不起作用。任何帮助将不胜感激。
【问题讨论】: