我有以下佈局:自動高度
CSS
.top-container{
width:100%;
height:auto;
position:relative;
}
.top-container img{
width:100%;
height:100%;
position:absolute;
z-index:1;
}
HTML
<div class="top-container">
<img src="blahblah" />
</div>
我的問題是我需要的圖像是寬度100% (實際上是工作), ,但高度必須具有100%寬度的自動高度。我已經嘗試過 高度:自動。但幾乎沒有幫助的場外。它有助於確定一個特定的高度,但是圖像的縮放比例是錯誤的。
有什麼建議嗎?