How to fill space with image using css?
If you want to fill space with image you will need to use:
.box img {
width: 100%;
height: 100%;
object-fit: cover;
}
If you want to fill space with image you will need to use:
.box img {
width: 100%;
height: 100%;
object-fit: cover;
}