Font Weight
Embed This Widget
Add the script tag and a data attribute to embed this widget.
Embed via iframe for maximum compatibility.
<iframe src="https://fontfyi.com/iframe/glossary/font-weight/" width="420" height="400" frameborder="0" style="border:0;border-radius:10px;max-width:100%" loading="lazy"></iframe>
Paste this URL in WordPress, Medium, or any oEmbed-compatible platform.
https://fontfyi.com/glossary/font-weight/
Add a dynamic SVG badge to your README or docs.
[](https://fontfyi.com/glossary/font-weight/)
Use the native HTML custom element.
The thickness of character strokes, typically ranging from 100 (Thin) to 900 (Black). Regular is 400, Bold is 700.
Font weight describes the thickness of the strokes that make up a typeface's characters. In CSS, font-weight is expressed on a numeric scale from 100 to 900, in increments of 100, where 100 is the thinnest (hairline or thin) and 900 is the heaviest (black or ultra-heavy). The traditional named weights — light, regular, medium, bold — map to specific points on this scale.
The numeric scale is not arbitrary. It was standardized to provide a consistent vocabulary across typefaces with different naming conventions. A typeface designer might label their weights "Book", "Demi", "Heavy", and "Display" — the numeric system creates a universal mapping so CSS can find the closest available weight regardless of naming.
/* The standard weight scale */
.thin { font-weight: 100; } /* Hairline, Thin */
.extralight{ font-weight: 200; } /* ExtraLight, Ultra Light */
.light { font-weight: 300; } /* Light */
.regular { font-weight: 400; } /* Regular, Normal, Book */
.medium { font-weight: 500; } /* Medium */
.semibold { font-weight: 600; } /* SemiBold, DemiBold */
.bold { font-weight: 700; } /* Bold */
.extrabold { font-weight: 800; } /* ExtraBold, Ultra Bold */
.black { font-weight: 900; } /* Black, Heavy */
/* CSS also accepts keyword values */
.bold-keyword {
font-weight: bold; /* Equivalent to 700 */
}
.normal-keyword {
font-weight: normal; /* Equivalent to 400 */
}
/* Relative keywords */
.bolder {
font-weight: bolder; /* One step heavier than parent */
}
/* Loading specific weights from Google Fonts */
/* Only request what you'll actually use — each weight adds ~20-30KB */
/* In HTML for Inter with three weights: */
/* <link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet"> */
/* Optical sizing consideration */
.headline {
font-weight: 700;
/* Bold at large sizes often needs tracking adjustment */
letter-spacing: -0.02em;
}
.body-text {
font-weight: 400;
/* Regular weight needs no tracking intervention at body sizes */
}
When the browser can't find the exact requested weight, it performs weight matching — finding the closest available weight using a defined algorithm. Requesting font-weight: 500 from a font that only has 400 and 700 will give you 400 (the browser first looks lighter before going heavier for weights at or below 500). Understanding this prevents unexpected visual results.
Variable fonts (increasingly common on Google Fonts for typefaces like Inter, Nunito, and Source Sans 3) change the picture entirely — a single variable font file contains the full weight range, so any value from 100 to 900 is available without multiple requests. When using variable fonts, you can use any weight value, not just the traditional increments of 100.
관련 용어
관련 도구
이 개념을 보여주는 폰트
더 알아보기
CSS에서 가변 폰트를 사용하는 실전 가이드입니다 — 로딩, 축 설정, 속성 애니메이션, 브라우저 지원 고려사항을 다룹니다.
CSS 타이포그래피CSS @font-face로 커스텀 폰트를 로드하는 단계별 튜토리얼입니다 — 문법, 포맷 선택, 바로 복사해 쓸 수 있는 실전 예제를 다룹니다.
폰트 리뷰가변 폰트는 하나의 파일로 무한한 유연성을 제공합니다. Google Fonts의 최고 가변 폰트입니다 — 성능, 디자인 유연성, 창의적 제어를 다룹니다.
폰트 리뷰디스플레이 폰트는 큰 크기에서 시선을 사로잡도록 설계되었습니다. 굵고 인상적인 헤드라인을 위한 Google Fonts의 최고 디스플레이 폰트입니다.