This acronym stands for Cascading Style Sheets.
What is CSS?
This selector targets all <p> elements.
What is p?
This property changes text color.
What is color?
This property controls the space inside an element’s border.
What is padding?
This property removes the underline from links. Hint: ____-____: none.
What is text-decoration: none?
True or False: The correct syntax for a CSS rule is selector { property: value; }
What is True?
This symbol is used to select an element by ID. (Hint: # or .)
What is #?
This property changes background color.
What is background-color?
This property controls the space outside an element’s border.
What is margin?
This property changes list bullets to squares. Hint: ____-____-____: square
What is list-style-type: square?
This HTML tag is used to define an internal style sheet.
What is <style>?
This symbol is used to select elements by class.
This property controls text size.
What is font-size?
Negative values are NOT allowed for this property.
This property controls how an element is displayed (block, inline, etc.).
What is display?
This HTML attribute allows inline CSS styling.
What is style?
This selector targets all <p> elements inside a <div>.
What is div p?
This property makes text bold.
What is font-weight?
This is the default value of the position property.
What is static?
This is the default display value of a <div>.
What is block?
This section of an HTML document is the correct place to link an external stylesheet.
What is the head?
Group multiple selectors in CSS by separating them with these.
What are commas?
This property capitalizes the first letter of each word. Hint: ___-___: ____
What is text-transform: capitalize?
This shorthand sets top, right, bottom, and left border widths. Hint: ___-___
What is border-width?
This property controls element visibility without removing it from layout.
What is visibility?