CSS Basics
Selectors
Colors & Text
Layout & Box Model
Links, Lists & Display
100

This acronym stands for Cascading Style Sheets.

What is CSS?

100

This selector targets all <p> elements.

What is p? 

100

This property changes text color.

What is color?

100

This property controls the space inside an element’s border.

What is padding? 

100

This property removes the underline from links. Hint: ____-____: none.

What is text-decoration: none?

200

True or False: The correct syntax for a CSS rule is selector { property: value; }

What is True? 

200

This symbol is used to select an element by ID. (Hint: # or .) 

What is #?

200

This property changes background color.

What is background-color?

200

This property controls the space outside an element’s border.

What is margin? 

200

This property changes list bullets to squares. Hint: ____-____-____: square 

What is list-style-type: square?

300

This HTML tag is used to define an internal style sheet.

What is <style>?

300

This symbol is used to select elements by class.

What is . ?
300

This property controls text size.

What is font-size? 

300

Negative values are NOT allowed for this property.

What is padding? 
300

This property controls how an element is displayed (block, inline, etc.).

What is display?

400

This HTML attribute allows inline CSS styling.

What is style? 

400

This selector targets all <p> elements inside a <div>.

What is div p? 

400

This property makes text bold.

What is font-weight?

400

This is the default value of the position property.

What is static? 

400

This is the default display value of a <div>.

What is block?

500

This section of an HTML document is the correct place to link an external stylesheet.

What is the head? 

500

Group multiple selectors in CSS by separating them with these. 

What are commas? 

500

This property capitalizes the first letter of each word. Hint: ___-___: ____ 

What is text-transform: capitalize?

500

This shorthand sets top, right, bottom, and left border widths. Hint: ___-___

What is border-width?

500

This property controls element visibility without removing it from layout.

What is visibility?