
All of the following properties in the font shorthand can be `normal`: - font-style - font-variant - font-weight - font-stretch This means that we must allow up to four consecutive `normal` at the start of a font shorthand value.
10 lines
356 B
HTML
10 lines
356 B
HTML
<!doctype html><style>
|
|
.one { font: normal 200px/1 SerenitySans; }
|
|
.two { font: normal normal 200px/1 SerenitySans; }
|
|
.three { font: normal normal normal 200px/1 SerenitySans; }
|
|
.four { font: normal normal normal normal 200px/1 SerenitySans; }
|
|
</style>
|
|
<span class=one>1</span>
|
|
<span class=two>2</span>
|
|
<span class=three>3</span>
|
|
<span class=four>4</span>
|