我有以下布局:
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% 的宽度,高度必须具有自动高度。我试过了
height:auto
。但这当然没有帮助。它有助于特定高度,但随后图像缩放错误。
有什么建议么?