CSS Exercises

Fill in the blanks to test your knowledge.

1

Set the text color to red

p { : red; }
2

Set background color to #111118

body { : #111118; }
3

Make text bold using CSS

p { : bold; }
4

Set font size to 16px

p { : 16px; }
5

Add 20px padding on all sides

.card { : 20px; }
6

Center text horizontally

p { : center; }
7

Make an element a flex container

.nav { : flex; }
8

Set border radius to 8px

.card { : 8px; }
9

Hide an element

.hidden { : none; }
10

Set max-width to 1200px

.container { : 1200px; }