resize image without losing aspect ratio css code example
Example 1: css keep image ratio
img {
object-fit: cover;
width: 100px;
height:100px;
}
Example 2: resizing photos without losing quality css
.resize {
width: 200px;
height : auto;
}
.resize {
width: auto;
height : 300px;
}