首页 > Web开发 > 详细

css设置图片的高等于图片的高

时间:2018-05-21 14:09:38      阅读:156      评论:0      收藏:0      [点我收藏+]

 

<div class="box">                
    <img src="img/2222.jpg" />
</div>
.box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 100%;
}
        
.box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

 

css设置图片的高等于图片的高

原文:https://www.cnblogs.com/qqing/p/9066608.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!