A
B
100

How can you comment out a single line in CSS?

/* This is a comment */

100

How do you remove the underlines from all links in a navigation menu?

text-decoration: none;

200

ow do you select all links that are in an unordered list (<ul>)?

ul a

200

What selector is used to select the first child of an element?

:first-child

300

 What are the four main components of the CSS box model?

Content, Padding, Border, Margin

300

What property do you use to make a container a flex container?

display: flex;

400

How can you center align items horizontally in a flex container?

justify-content: center;

400

What's the difference between em and rem units in CSS

em units are relative to the font-size of the nearest parent, while rem units are relative to the root (html) font-size

500

Explain the specificity hierarchy in CSS

Specificity determines which CSS rule takes precedence when multiple rules target the same element

500

What is the CSS property used to define the number of columns in a grid container?

grid-template-columns

M
e
n
u