css의 7가지 단위
rem
body { font-size: 14px; } div { font-size: 1.2em; // calculated at 14px * 1.2, or 16.8px }
<body>
<div>
Test <!-- 14 * 1.2 = 16.8px -->
<div>
Test <!-- 16.8 * 1.2 = 20.16px -->
<div>
Test <!-- 20.16 * 1.2 = 24.192px -->
</div>
</div>
</div>
</body>rem
WHEN ? 그리드 시스템
NOTE
vh와 vw
when?
vmin과 vmax
when?
ex와 ch
ch
ex
when ?
그밖에..
px
pt
Last updated
Was this helpful?