工作,我需要設置我使用background: url('images/something.jpg')[..];
奇怪的CSS問題 - 背景屬性不無圖像高度
鐵圖像height
每次。
HTML:
<div class="someImage"></div>
CSS:
.someImage {
background: url('images/something.jpg') no-repeat top;
}
上面的例子應該工作...但不能顯示圖像,直到我添加圖像height
屬性的CSS樣式類:
.someImage {
background: url('images/something.jpg') no-repeat top;
height: 25px;
}
然後我的圖片出現在網站上...
爲什麼它會發生?