首页 > Web开发 > 详细

css设置图片根据最大边自适应

时间:2021-08-03 15:06:47      阅读:15      评论:0      收藏:0      [点我收藏+]

给新手的福利,还是记一下吧.......很简单

技术分享图片

 

 

<div>
        <img src="1.jpg" alt="">
</div>


       div{
            width: 100px;
            height: 60px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

       img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
        }

 

 

(普及知识: 小程序更简单(使图片的长边能完全显示出来)  直接修改  mode值)

技术分享图片

 

 

css设置图片根据最大边自适应

原文:https://www.cnblogs.com/520BigBear/p/15093154.html

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