본문 바로가기
CSS🔧/css

이미지 비율 맞추기

by hyojinny 2022. 12. 6.

.main_event .event .img_wrap img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
}

 

 


 

 

 

 

.main_event .event .img_wrap img {
  position: absolute;
  left: 50%;
  top: 50%;
  height: 100%;
  transform: translate(-50% , -50%);
}

'CSS🔧 > css' 카테고리의 다른 글

아이폰 플랙스 안먹을때 (flex 이슈)  (0) 2022.12.07
이미지 비율 맞추기  (0) 2022.12.07
뒤로가기 버튼 onclick="history.back(); / javascript:void(0)  (0) 2022.11.21
object-fit: cover  (0) 2022.11.08
기본화살표 cursor: auto;  (0) 2022.11.03

댓글