0
0
CSSmarkup~5 mins

Font weight in CSS - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the CSS property font-weight control?
The font-weight property controls how thick or thin the text appears on the screen.
Click to reveal answer
beginner
Name three common values you can use with font-weight.
Common values are normal (default thickness), bold (thicker text), and numeric values like 400 (normal) or 700 (bold).
Click to reveal answer
intermediate
What numeric range can font-weight values take?
Numeric values range from 100 (thin) to 900 (extra bold), increasing in steps of 100.
Click to reveal answer
beginner
How would you make text bold using CSS?
Use font-weight: bold; or font-weight: 700; in your CSS rule for the text element.
Click to reveal answer
beginner
True or False: The font-weight property affects the size of the text.
False. font-weight changes the thickness of the text, not its size.
Click to reveal answer
Which CSS value makes text appear thicker?
Afont-weight: thin;
Bfont-weight: bold;
Cfont-weight: normal;
Dfont-weight: light;
What numeric value corresponds to normal font weight?
A400
B100
C700
D900
Which is NOT a valid font-weight value?
A500
Bbold
Cnormal
Dextra-bold
If you want very thin text, which value should you use?
A100
Bbold
C900
Dnormal
Does font-weight change the font size?
AYes, it makes text smaller
BYes, it makes text bigger
CNo, it only changes thickness
DOnly in some browsers
Explain how the font-weight property affects text appearance and list some common values.
Think about how thick or thin letters look.
You got /4 concepts.
    Describe the difference between using named values and numeric values for font-weight.
    Consider how you can be more precise with numbers.
    You got /3 concepts.