1
2
3
4
5
100
What are comments in CSS signified by?
Comments in CSS are signified by a forward-slash and asterisk.
100
What are the definitions of "properties"?
Properties are defined within selectors by defining a property and a value.
100
What's the definition of "padding"?
The padding is the spacing between the content and the border (edge of the element.).
100
What are selectors?
Selectors are used in CSS to select the parts of the HTML that are being styled.
100
What is serif?
serif: A font with little decorative bits on the ends of the strokes that make up letters.
200
What are properties separated with? What are they delineated with?
They are separated with a colon and delineated with a semi-colon.
200
Please name at least 6 CSS properties.
font, font-family, font-size, text-decoration, color, background-color, padding, width, height...
200
Name two attributes have special status for CSS.
Class and ID.
200
What does CSS stand for?
Cascading Style Sheets.
200
What is a pixel?
A pixel is a dot on your computer screen.
300
What's the symbol or the universal selector?
"*"
300
What are abbreviations like TM, TB, and TP?
"Top margin", "Top border", "Top padding".
300
Why use CSS?
CSS helps you to keep the information content of a document separate from the details of how to display it.
300
Name three types of positioning.
Absolute positioning, Relative positioning, Fixed positioning
300
(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.
* { border: 1px dashed #3A5FCD }
500
Name four possible values the display property.
Block, Inline-block, Inline, None
M
e
n
u