The font-weight CSS property specifies the weight or boldness of the font. However, some fonts are not available in all weights; some are available only on normal and bold.
Initialnormal
Applies toall elements
Inheritedyes
Mediavisual
Computed Valuethe keyword or the numerical value as specified, with bolder and lighter transformed to the real value
One font weight lighter than the parent element (among the available weights of the font).
bolder
One font weight darker than the parent element (among the available weights of the font).
100, 200, 300, 400, 500, 600, 700, 800, 900
Numeric font weights for fonts that provide more than just normal and bold. If the exact weight given is unavailable, then 600-900 use the closest available darker weight (or, if there is none, the closest available lighter weight), and 100-500 use the closest available lighter weight (or, if there is none, the closest available darker weight). This means that for fonts that provide only normal and bold, 100-500 are normal, and 600-900 are bold.
Interpolation
A font-weight value is interpolated via discrete steps (multiples of 100). The interpolation happens in real number space and is converted to an integer by rounding to the nearest multiple of 100, with values halfway between multiples of 100 rounded towards positive infinity.
Examples
1
/* Set paragraph text to be bold. */
2
p { font-weight: bold; }
3
/* Set h1 (level 1 heading) text to one step darker than
4
normal but less than a standard bold. */
5
h1{ font-weight: 500; }
6
/* Sets text enclosed within span tag to be one step lighter