LearningRecord
LearningRecord copied to clipboard
已知父级盒子的宽高,子级img宽高未知,想让img铺满父级盒子且图片不能变形
div {
width: 200px;
height: 200px;
}
img {
object-fit: cover;
width: 100%;
height: 100%;
}