1. 절대단위
절대 길이 단위는 고정되어 있으며 이들 중 하나로 표현된 길이는 정확히 해당 크기로 나타납니다.
화면 크기는 매우 다양하므로 절대 길이 단위는 화면에서 사용하지 않는 것이 좋습니다. 그러나 인쇄 레이아웃과 같이 출력 매체가 알려진 경우에는 사용할 수 있습니다.
cm | centimeters |
mm | millimeters |
in | inches (1in = 96px = 2.54cm) |
px * | pixels (1px = 1/96th of 1in) |
pt | points (1pt = 1/72 of 1in) |
pc | picas (1pc = 12 pt) |
2. 상대단위
상대 길이 단위는 다른 길이 속성에 상대적인 길이를 지정합니다. 상대 길이 단위는 다양한 렌더링 매체 간에 더 잘 확장됩니다.
em | Relative to the font-size of the element (2em means 2 times the size of the current font) | |
ex | Relative to the x-height of the current font (rarely used) | |
ch | Relative to width of the "0" (zero) | |
rem | Relative to font-size of the root element | |
vw | Relative to 1% of the width of the viewport* | |
vh | Relative to 1% of the height of the viewport* | |
vmin | Relative to 1% of viewport's* smaller dimension | |
vmax | Relative to 1% of viewport's* larger dimension | |
% | Relative to the parent element |
반응형
'CSS' 카테고리의 다른 글
[CSS] 많이쓰는 class 이름 정리 (0) | 2022.07.15 |
---|---|
모바일 제스처 스와이프, CSS 두 줄로 간단하게 만들기(가로스크롤) (0) | 2022.01.26 |
CSS로 스크롤바 기능만 살리고 안보이게하기 IE, Edge, Firefox, Chrome, Safari, Opera 대응법 (0) | 2022.01.26 |
[Hweb] CSS grid 기본 (0) | 2021.12.24 |