Image Center Alignment CSS (object-fit)

object-fit

objectfitsummary

fill: Increase or decrease according to the frame of the element (magnificationo/ratiox)

contain: Display the frame of the element according to the image ratio within the frame of the element (magnification x/ratioo)

cover: Enlarge until the frame of the element is full. Center-aligned (magnificationo/ratioo)


Example

//Fill the elements with the image center-aligned, and center-enlarged according to the ratio

img {
    width: 100px; // or 100%
    height: 100px; // or 100%
    object-fit: cover;
}



참조

Object-fit

Oct 3, 2023 Views 129