我有带有图像的 CSS
.backgroundImg {
background: url('./path/file.gif');
background-repeat: no repeat;
width: 24px;
height: 24px;
}
.ui-highlight {
border: 2px solid green;
color: #363636;
padding: 0.7em;
}
我有导入此类的 div 标签
<div class="ui-highlight ui-corner-all">
<div class="backgroundImg" style="float:left;">
some text.........
</div>
</div>
编辑
我正在尝试实现一个边框框,左侧是图像,右侧是文本。我检查了元素,当我将鼠标悬停在我知道 css 的 ui-highlight 类上时,图像就会显示出来,老实说,我不是这方面的专家。谁能帮我为什么图片不显示
更新
向 backgroundImg 类添加宽度和高度后,图像可见。