图片在固定宽高盒子中的显示问题

背景

https://www.jianshu.com/p/a2ce70fa9584

存在问题

图片显示固定宽高问题

解决方案

.img-box {
    
    
    overflow: hidden;
    position: relative;
    height: 150px;
    img{
    
    
        width: 100%;
        height: 100%;
        object-fit: scale-down;
        background: #fdfdfdee;
    }
}

猜你喜欢

转载自blog.csdn.net/valsedefleurs/article/details/130399723