# INDEX
1. 기본문법
2. 단위
2-1. 크기 단위
2-2. 색상 단위
3. box model
4. display property
5. 요소의 정렬&위치
6. 레이아웃
7. 수평 수직 중앙정렬
8. 기타
body { font-size: 14px; }
div { font-size: 1.2em; padding: 2em; }
// 14px*1.2=16.8px // 16.8px*2=33.6px
<body>
<div> delilah </div>
</body>
body { font-size: 14px; }
div {font-size: 120%; } // 14px*1.2=16.8px
<body>
<div> delilah </div>
</body>
색상 단위 | 예 |
---|---|
HEX 코드 단위 (Hexadecimal Colors) | #000000 |
RGB (Red, Green, Blue) | rgb(255, 255, 0) |
RGBA (Red, Green, Blue, Alpha/투명도) | rgba(255, 255, 0, 1) |
HSL (Hue/색상, Saturation/채도, Lightness/명도) | hsl(0, 100%, 25%) |
HSLA (Hue, Saturation, Lightness, Alpha) | hsla(60, 100%, 50%, 1) |