1
HTML/CSSBeginner#html#entities
object-fit controls how a replaced element like <img> or <video> is resized to fit its container box — cover crops to fill while maintaining aspect ratio, contain fits entirely within bounds, and fill stretches to fill (default, may distort).
.avatar {
width: 100px;
height: 100px;
object-fit: cover;
border-radius: 50%;
}