본문 바로가기

TIL

CSS img object-fit

박스에 호버 시 배경 이미지만 확대

const BackgroundPosterWrapper = styled.div`
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
`;

const BackgroundPoster = styled.img`
  width: 100%;
  height: 100%;
  object-fit: cover;

  :hover {
    transform: scale(1.1);
    transition: all 0.2s;
  }

https://nykim.work/86 object-fit

'TIL' 카테고리의 다른 글

React lodash debounce  (1) 2022.09.21
React 쿼리 파라미터 값  (0) 2022.09.07
alert 말고 window.confirm  (0) 2022.08.09
커스텀 훅  (0) 2022.08.09
Axios  (0) 2022.08.09