Quizes & Games

CSS Quiz

The test contains 20 questions and it's not official, it's just a nice way to see how much you know, or don't know, about CSS.

1.

 How would you set a background image with CSS?

background: #FFF url();
background-attachment: url();
background-image: src();
background-url: ;

2.

 What does "margin-left: auto; margin-right: 0px;" do?

vertically aligns an element to the top of the page
horizontally aligns an element to the right of the page
vertically aligns an element to the bottom of the page
horizontally aligns an element to the center of the page

3.

 Is it possible to make the first character of an element look different than the other characters?

Maybe
None of the above
Yes
No

4.

Which of the following does CSS not do?

design
style
content
layout

5.

Which of the following is not a valid color code?

808080
grey
rgb(80, 80, 80)
#505050

6.

 Which of the following is not correct CSS syntax?

p { border= 1px dotted #000000; }
p, h1, h2 { color: green; }
<p style="border: 1px dotted #000000;"> </p>
p { border: 1px dotted #000000; }

7.

What is the difference between margins and padding?

padding adds whitespace inside the border and margins add whitespace outside
margins add whitespace inside the border and padding adds whitespace outside
there is no difference
padding adds whitespace and margins increase the border size

8.

Can images replace the numbers/bullets in both ordered and unordered lists?

Maybe
No
Yes
None of the above

9.

 Can CSS classes and ids both be used (referenced) more than once on the same webpage?

None of the above
No
Yes
Sorta

10.

 What does "text-transform: capitalize;" do?

Does it do this?
Does it do this?
Does it do this?
Does it do this?

11.

 Which of the following statements is not correct?

classes are identified a number sign (#)
classes are identified with a dot (.)
ids are identified with a number sign (#)
classes and ids are not used in inline CSS

12.

What is the proper syntax for changing the cursor style?

mouse-pointer { type: value; }
cursor { type: value; }
mouse-pointer: value;
cursor: value;

13.

 From the inside out, which of the following portrays the correct order of a  box model?

content, padding, border, margin
margin, border, padding, content
border, margin, content, padding
content, margin, border, padding

14.

Internal CSS Is:

Internal ascept of CSS
Added Directly to An HTML Tag
Maintained In A Separate File
Added to An HTML Document's Header

15.

Which of the following examples will position a layered element toward the top of the stack?

top: -100px
top: 100px;
position: static;
top: 100px;

16.

 What are floating elements?

clouds
elements that are pushed to the top or the bottom of a page
clear: left;
elements that are pushed to the right or the left of a page

17.

"a:hover" and "a:active" are both examples of what?

ids
pseudo-classes
attribute selectors
selectors

18.

 Which of the following examples will set multiple font properties for an entire webpage?

style="font: ;"
p { font-size: ; }
body { font-size: ; }
body { font: ; }

19.

What is the proper format of an CSS comment?

//
/* */
<! !>
<!-- -->