在过去的几天里,我一直在尝试解决这个非常烦人的问题。我什至已经阅读了 Stackoverflow 上所有可能的解决方案,但没有任何效果!
我的 HTML 中有这段代码:
<div id="picture">
<div class="picture-1"></div>
<div class="picture-2"></div>
<div class="picture-3"></div>
</div>
我的CSS中的这段代码:
#picture {
height: 250px;
border-top: 1px solid #ffefaf;
border-bottom: 2px solid #ffffff;
clear: both;
}
.picture-1 {
background: transparent url('images/view.png') left top no-repeat;
}
.picture-2 {
background: transparent url('images/plant.png') left top no-repeat;
}
.picture-3 {
background: transparent url('images/view.png') left top no-repeat;
}
图片在正确的文件夹中,名称正确,但它们不起作用。可能是什么问题呢?