Skip to content

Instantly share code, notes, and snippets.

View sunwoo0706's full-sized avatar

이선우 sunwoo0706

View GitHub Profile
@sunwoo0706
sunwoo0706 / fontSizeUnitsType.ts
Last active January 3, 2022 08:57
css font-size units type
type cssFontAbsoluteLengthUnitTokens = 'cm' | 'mm' | 'in' | 'px' | 'pt' | 'pc';
type cssFontRelativeLengthUnitTokens = 'em' | 'ex' | 'ch' | 'rem' | 'vw' | 'vmin' | 'vmax' | '%';
type cssFontContextUnitTokens = 'medium' | 'xx-small' | 'x-small' | 'small' | 'large' | 'x-large' | 'xx-large' | 'initial';
type cssFontUnitType = `${number}${cssFontAbsoluteLengthUnitTokens | cssFontRelativeLengthUnitTokens}` | cssFontContextUnitTokens;
interface example {
fontSize: cssFontUnitType;
}