语法
object-fit: fill|contain|cover|scale-down|none|initial|inherit;
原图片效果展示
设置宽高时效果如图
.img {
height: 100px;
width: 100px;
// object-fit: cover;
}
裁剪展示效果如图
.img {
height: 100px;
width: 100px;
object-fit: cover;
}
CSS:图片伸缩模糊时进行裁剪保留原始比例展示
阅读 66
2022-04-14
语法
object-fit: fill|contain|cover|scale-down|none|initial|inherit;
.img {
height: 100px;
width: 100px;
// object-fit: cover;
}
.img {
height: 100px;
width: 100px;
object-fit: cover;
}
相关推荐
精彩评论(0)