속성 인터폴레이션
속성 보간법
<abbr title={abbrs.jsx}>{headline}</abbr>스타일 속성 (인라인)
<figure style={{ marginTop: '1rem', marginBottom: '0.8rem' }} />다른 속성과 달리 style 속성은 왜 객체인 것일까요?
{
type: 'figure',
props: {
style: {
marginTop: '1rem',
marginBottom: '0.8rem'
}
}
}스타일 속성 (객체)
클래스 속성
클래스 속성 (동적 처리)
Last updated