분류
css
CSS 웹에서 사용하는 폰트 단위
본문
홈페이지를 제작할 때 다양한 폰트 크기 단위를 사용합니다.
Unit | Type | Description |
---|---|---|
px | Absolute | 1 “viewport pixel” |
pt | Absolute | 1 point is 1/72 of an inch |
pc | Absolute | 1 pica is equal to 12 points |
% | Relative | Relative to the parent element’s font size |
em | Relative | Relative to the parent element’s font size |
rem | Relative | (root em) Relative to the html font size |
keyword | Relative | xx-small, x-small, small, medium, large, x-large, xx-large |
vw | Relative | 1/100th of the width of the viewport |
vh | Relative | 1/100th of the height of the viewport |
vmin | Relative | 1/100th of the viewport’s smaller dimension (height or width) |
vmax | Relative | 1/100th of the viewport’s larger dimension (height or width) |
- 이전글CSS만으로 삼각형 구현하기 15.04.27
- 다음글CSS Circular Fly-Out Navigation Menu 15.04.27