(CSS)Styles define how to display _______ elements.
Styles define how to display HTML elements.
400
What's the CSS Box Model?
The CSS Box Model is a form that represents how spacing is added around subjects.
400
What are display values in CSS positioning?
Display values, including block, inline-block, inline, and none.
400
"A CSS rule set consists of a selector and a declaration block. Each declaration includes a property name and a value, separated by a colon." Is this statement true or false?
True.
400
What are pseudo-class selectors?
CSS pseudo-classes are used to add special effects to some selectors.
400
What is a:link?
a:link: An unvisited link.
500
The CSS Box Model has three different values, what are they?
Padding, Margin, Border.
500
On the CSS tab, set all unvisited links to have no text decoration and a color of #008B45.
a:Link{
text-decoration: none;
color: #008B45;
}
500
Set all paragraph text to the hexadecimal color #00E5EE.
p{
color: #00E5EE;
}
500
Use the universal selector to put a 1px dashed #3A5FCD border around every element on the page.