A kind of selector that is applied to items of the same tag.
What is a type selector
What property controls the background color?
background-color
What does CSS stand for
What is Cascading Style Sheet
Symbol for universal selector
what is *
Properties that influence the styling and layout of HTML elements included in the HTML code.
What is an attribute?
A kind of selector that can be applied to multiple different elements using an attribute.
What is a class selector?
What property includes the text color?
color
How to do CSS comment
What is /* */
Symbol for class selector
What is .
What is the necessary attribute to have an element affected by a the CSS selector .green?
what is class = "green"
A kind of selector that can only be used once.
What is an ID selector?
What property makes something bold?
font-weight
What html element connects html and css together
Symbol for ID selector
What is #
What is the necessary attribute to have an element affected by a the CSS selector #red?
A kind of selector that affects all elements on the page.
What is a universal selector?
What property controls the font?
font-family
What is the extension needed for the IDE to recognize it as CSS
what is .css?
What do all CSS statements end with
What is a ;
What are two attributes that are ONLY for html
What is src and href
A type of CSS that is RARELY used and affects one element at a time.
What is inline CSS.
What property controls the font size
What is font-size
What is the difference between a class and an id?
IDs are unique. Classes can be applied to multiple elements.
The "grammar" rules of a language
What is syntax?
Can html elements have multiple attributes?
Yes