CSIT 121 Quiz 6
When configuring the background color of an element, the background color is applied to both the content and ________ areas.
padding
The box model consists of a content area surrounded by ________.
padding, border, and margin
A page layout technique where the background images vertically scroll at a different speed than the text page content is called ________.
parallax scrolling
Use ________ positioning to slightly change the location of an element in relation to where it would otherwise appear when rendered by a browser.
relative
Use an id to configure a style when ________.
the style will apply to only one element on a page.
The ________ pseudo-class configures the styles that will apply when the mouse is on a hyperlink.
hover
The ________ pseudo-class configures the appearance of the hyperlink before it is clicked.
link
Use the ________ property to configure an image to use as a bullet point in an unordered list.
list-style-image
Select the example below that configures a container to clear all floated elements that are within the container.
overflow: auto;
The default value for the border property for an element is ________.
0 pixels
How would you link to the named fragment #school on the page resume.html from the home page of the site?
<a href="resume.html#school">Educational Background</a>
Which of the following configures a margin for an element with the following values: top margin 30 pixels, left margin 150 pixels, right margin 0 pixels, and bottom margin 0 pixels?
Margin: 30px 0 0 150px;
________ flow displays the elements on the page in the order they appear in the web page source code.
Normal
What is the term used to describe an image file that contains multiple small graphics?
Sprite
To apply a style to one or more elements on a web page, configure a CSS ________.
class
Use the ________ or ________ property to clear a float.
clear; overflow
CSS sticky positioning ________.
combines features of relative and fixed positioning
Use ________ positioning to configure the location of an element to remain the same and to not move even when the web page is scrolled within the browser viewport.
fixed
If an element is configured with ________, the other content on the page will appear to its left.
float:right;
Choose the example below of a descendant selector that configures the anchor tags with the nav element.
nav a