前端小知识----如何100%宽度显示图片,高度自动不失真

来源:互联网 发布:youtube不翻墙软件 编辑:程序博客网 时间:2024/05/21 19:45
  <!--                      我们将img css样式宽度设置为100%      height为自动。  将overflow设置为hidden;      imgbox不要给高度,设置为overflow:auto。图像就不再失真      请根据页面合理使用。。   -->    <style>          .imgbox{overflow:auto;}          .imgbox img{width:100%; height:auto;overflow: hidden;}               </style>       <div id = "imgbox">           <img src="./img/product.png">       </div>

0 0