몽땅뚝딱 개발자

[CSS] 이미지 비율맞춰 가운데로 넣기 본문

Development/HTML · CSS

[CSS] 이미지 비율맞춰 가운데로 넣기

레오나르도 다빈츠 2022. 5. 26. 12:51
image-box {
   position:relative;
   
   &__image {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%,-50%);
      max-width: 100%;
      max-height: 100%;
    }
}

 

Comments