1 - What does the three letter acronym "CSS" stand for?
custom style sheets
custom sheet styles
cascading style sheets
cascading sheet styles
3 - If you wanted to make the background color of a webpage yellow what code should be used?
background-color:yellow;
background:yellow;
bgcolor:yellow;
color-background:yellow;
5 - Which of the following is not a valid property of "background-repeat"?
background-repeat:repeat-x;
background-repeat:repeat-y;
background-repeat:repeat-xy;
background-repeat:no-repeat;
7 - Which of the following is not a valid property of "text-decoration"?
text-decoration:overline;
text-decoration:line-through;
text-decoration:underline;
text-decoration:no-line;
9 - Which of the following is not a valid property of "text-transform"?
text-transform:uppercase;
text-transform:lowercase;
text-transform:no-case;
text-transform:capitalize;
11 - Which of the following styles will correctly make a given font bold?
weight:bold;
font-weight:bold;
font:bold;
none of the above
13 - Which of the following is not a valid css border property?
border-top
border-bottom
border-side
all are valid
15 - Which css property will correctly change the dimensions of the right margin?
margin
right-margin
margin-right
none of the above
16 - In what order does the "border-width" property list border sizes?
top, right, bottom, left
left, right, top, bottom
left, bottom, right, top
top, bottom, left, right
17 - What css property will change the font of a set text?
font
font-family
family
font-size
19 - Where in an HTML document is the right place to refer to an style sheet?
<head>
<body>
<footer>
none of the above
21 - What is the correct way to declare a comment when writing in CSS?
</ comment />
{{comment}}
//comment//
/*comment*/