如何防止vh、vw调整图片时候会变形拉伸
在需要调整的图片对应的地方加上object-fit:cover,就可以实现不变形
.enterpriseQrCode{
width: 3vw;
height: 5vh;
object-fit: cover;
}
在需要调整的图片对应的地方加上object-fit:cover,就可以实现不变形
.enterpriseQrCode{
width: 3vw;
height: 5vh;
object-fit: cover;
}