let's get IT with DAVINA 💻
div에 img 넣기 (props) 본문
export const ImgBox = styled.div`
background-image: ${(props) => `url(${props.img})`};
background-size: cover;
background-position: center;
height: 20rem;
border-radius: 1rem;
position: relative;
`;
<ImgBox img={img}>
⛔️ Error Issue
background-image만 줬더니 사진의 전체 이미지가 담기지 않아서 background-size:cover & background-position: center를 추가하여 이미지가 div의 사이즈에 딱 맞게 배치됨
'DEV_IN > CSS' 카테고리의 다른 글
글자 수 초과시? (0) | 2023.02.09 |
---|---|
Position (0) | 2023.02.09 |
GMT/UTC time 형식 “2023-02-02” format으로 change (0) | 2023.02.08 |
react-datepicker (2) | 2023.02.08 |
React-Styled Components (0) | 2023.02.08 |
Comments