반응형 이미지 비율 유지하기

이성훈·2024년 8월 9일

CSS

목록 보기
9/9
parent {
  position: relative;
  width: 100%;
  padding-top: 70%;
}
parent img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
profile
프론트엔드 정리

0개의 댓글