1p.normal {
2 font-weight: normal;
3}
4
5p.thick {
6 font-weight: bold;
7}
8
9p.thicker {
10 font-weight: 900;
11}
1/* Keyword values */
2font-weight: normal;
3font-weight: bold;
4
5/* Keyword values relative to the parent */
6font-weight: lighter;
7font-weight: bolder;
8
9/* Numeric keyword values */
10font-weight: 100;
11font-weight: 200;
12font-weight: 300;
13font-weight: 400;// normal
14font-weight: 500;
15font-weight: 600;
16font-weight: 700;// bold
17font-weight: 800;
18font-weight: 900;
19
20/* Global values */
21font-weight: inherit;
22font-weight: initial;
23font-weight: revert;
24font-weight: unset;
25
1/* Valeurs avec un mot-clé */
2font-weight: normal;
3font-weight: bold;
4
5/* Valeurs relatives à l'élément parent */
6font-weight: lighter;
7font-weight: bolder;
8
9/* Valeurs numériques */
10font-weight: 1;
11font-weight: 100;
12font-weight: 100.6;
13font-weight: 123;
14font-weight: 200;
15font-weight: 300;
16font-weight: 321;
17font-weight: 400;
18font-weight: 500;
19font-weight: 600;
20font-weight: 700;
21font-weight: 800;
22font-weight: 900;
23font-weight: 1000;
24
25/* Valeurs globales */
26font-weight: inherit;
27font-weight: initial;
28font-weight: unset;
29
1/* Keyword values */
2font-weight: bold;
3
4/* Keyword values relative to the parent */
5font-weight: bolder;
6
7/* Numeric keyword values */
8font-weight: 700; // bold
9font-weight: 800;
10font-weight: 900;