프론트엔드/HTML · CSS · Javascript

[css] 어떤 width 값에도 이미지 비율 유지하기

경호! 2021. 7. 9. 12:34

아래는 16:9를 유지하는 css 코드입니다.

.background-img {

    display:block;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 100%;
    padding-bottom: calc(100% * (9/16));

}