Multiple Choice Identify the
choice that best completes the statement or answers the question.
|
|
|
1.
|
An advantage of using CSS for page layout is:
a. | potentially smaller documents | c. | increased accessibility | b. | easier site
maintenance | d. | all of the above |
|
|
|
2.
|
The _______ is the area between the content and the margin.
a. | border | c. | padding | b. | spacing | d. | none of the above |
|
|
|
3.
|
_________ flow displays the elements on the page in the
order they appear in the web page source code.
a. | default | c. | browser | b. | source
code | d. | normal |
|
|
|
4.
|
Use ___________ positioning to slightly change the location
of an element in relation to where it would otherwise appear when rendered by a
browser.
a. | absolute | c. | relative | b. | float | d. | z-index |
|
|
|
5.
|
The _________ property is used to modify the stacking order
of elements on a web page.
a. | display | c. | stacking | b. | z-index | d. | float |
|
|
|
6.
|
Use the _______________ property to configure an image to
use as a bullet point in an unordered list.
a. | bullet-image | c. |
list-style-image | b. | image-style | d. | bullet-style-image |
|
|
|
7.
|
When configuring CSS to display a printed page, use the
___________ property in the XHTML link tag.
a. | media="print" | c. | media="paper" | b. | out="printer" | d. | media="screen" |
|
|
|
8.
|
When using the box model, the _____ is always
transparent.
a. | border | c. | spacing | b. | content | d. | margin |
|
|
|
9.
|
Use a class to configure a style when:
a. | the style could apply to more than one element on a
page. | c. | the style is used for all elements on a
page. | b. | the style will apply to only one element on a
page. | d. | None of the above |
|
|
|
10.
|
If an element is configured with ___________ the other
content on the page will appear to its left.
a. | position:left; | c. | float:left; | b. | position:relative; | d. | float:right; |
|
|
|
11.
|
__________________ will cause an object not to display
either in the browser window or on a printed page
a. | display:block; | c. | display:none; | b. | display:
0px; | d. | this cannot be done with CSS |
|
|
|
12.
|
______ will configure a class called blog to stack on top
of other elements that have a z-index of 3?
a. | #blog{z-index:
high}; | c. | .blog{ z-index:2}; | b. | .blog{z-index:4}; | d. | none of the above |
|
|
|
13.
|
Use the ________ property along with the left, right and/or
top property to precisely configure the position of an element.
a. | position:absolute; | c. | position:float; | b. | position:relative; | d. | absolute:position; |
|