분류 css

CSS 웹에서 사용하는 폰트 단위

컨텐츠 정보

  • 조회 2,317 (작성일 )

본문

홈페이지를 제작할 때 다양한 폰트 크기 단위를 사용합니다.

 

 

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