Styled-components
스타일 속성은 유지하되 태그만 바꿔주고 싶을때
as='바꿔줄 태그'
const BtnBlue = styled.button`
background-color: blue;
color: white;
`;
// ....
<BtnBlue as="a" /> // = 버튼이지만 a태그로 바꿔서 사용함
기본 속성값 설정
const Input = styled.input.attrs({ required: true })`
`
백그라운드 이미지 설정
일단 import를 한다
import Bg from './img/Bg.jpg';
라고 한 다음. styled-components에서
export const Bgbox = styled.div`
background: url(${Bg});
`
'study > TIL' 카테고리의 다른 글
타입스크립트 기본 복습 정리 2 (0) | 2023.06.20 |
---|---|
타입스크립트 기본 복습 정리 (0) | 2023.06.16 |
기본 프로젝트 세팅과 git (1) | 2023.04.12 |
4월 1일 TIL (0) | 2023.04.02 |
Optimization (0) | 2023.03.30 |