LearningRecord icon indicating copy to clipboard operation
LearningRecord copied to clipboard

已知父级盒子的宽高,子级img宽高未知,想让img铺满父级盒子且图片不能变形

Open Rashomon511 opened this issue 5 years ago • 0 comments

div {
    width: 200px;
    height: 200px;
}
img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

Rashomon511 avatar Jun 22 '19 09:06 Rashomon511