CSS: 컨테이너 높이를 배경 이미지 크기에 맞게 자동 조정하는 방법 - 워드프레스 정보꾸러미

PHOTO EMBED

Thu Jan 06 2022 10:11:24 GMT+0000 (Coordinated Universal Time)

Saved by @wnakswl

/*WIDE SCREEN SUPPORT*/
@media screen and (min-width: 769px) { 
    div {
        background-image: url('이미지 URL');
        background-size: cover;
        background-repeat: no-repeat;
        width: 100%;
        height: 0;
        padding-top: 66.64%; /* (img-height / img-width * container-width) */
                    /* (853 / 1280 * 100) */
    }
}

/*MOBILE SUPPORT*/
@media screen and (max-width: 768px) {
    div {
        background-image: url('이미지 URL');
        background-size: contain;
        background-repeat: no-repeat;
        width: 100%;
        height: 0;
        padding-top: 66.64%; /* (img-height / img-width * container-width) */
                    /* (853 / 1280 * 100) */
    }
}
content_copyCOPY

https://www.thewordcracker.com/miscellaneous/컨테이너-높이를-배경-이미지-크기에-맞게/