不过,我可以给个建议:
min-width:最小宽度
max-width:最大宽度
在menu 中加样式看看:
#menu
{
min-width:500px
width:auto
max-width:960px
margin:0px auto
}
把图片设为父级元素的背景图片是最简单的方法:
<div style="width:400px height:300px background:url(123.jpg) no-repeat center / cover"></div>如果一定要以单独的图片展示,则这样:
<div style="position:relative width:400px height:300px overflow:hidden"><img src="123.jpg" style="position:absolute left:50% top:50% transform:translate(-50%,-50%) min-width:100% min-height:100% " />
</div>
<!--以上适用于图片的长和宽至少有一个是小于div外框的情况-->
<!--如果图片的长和宽都大于div外框,则必须结合js才行-->
<div style="position:relative width:400px height:300px overflow:hidden">
<img src="123.jpg" style="position:absolute left:50% top:50% min-width:100% min-height:100% transform:translate(-50%,-50%)" onload="if(this.width>400&&this.height>300){if(this.width/this.height<400/300){this.style.maxWidth='100%'}else{this.style.maxHeight='100%'}}" />
</div>