WEB 110 - Ch 7 Quiz

10 September 2022
4.7 (114 reviews)
20 test answers

Unlock all answers in this set

Unlock answers (16)
question
What is the term used to describe image file that contains multiple small graphics?
answer
sprite
question
Choose the example below of a descendant selector that configures the anchor tags within the element assigned to the content id. content#a a#content #content a .content a
answer
#content a
question
The _______ pseudo-class configures the styles that will apply when the mouse is placed over a hyperlink.
answer
:hover
question
_________ flow displays the elements on the page in the order they appear in the web page source code.
answer
normal
question
Use ___________ positioning to slightly change the location of an element in relation to where it would otherwise appear when rendered by a browser.
answer
relative
question
The CSS to create the class called myfloat that floats to the right of the other page content, has a 10px margin, and a solid border is:
answer
.myfloat { float:right; margin:10px; border: 1px solid #000000;
question
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.
answer
fixed
question
Use the _______________ property to eliminate the bullets from an unordered list.
answer
list-style-type
question
Use ____________ positioning to precisely configure the location of an element outside of normal flow.
answer
absolute
question
The _______ pseudo-class configures the styles that will apply when a hyperlink is clicked,
answer
:active
question
If an element is configured with ___________ the other content on the page will appear to its left.
answer
float:right;
question
__________________ will cause an object not to display.
answer
display: none;
question
Use the ________ property along with the left, right and/or top property to precisely configure the position of an element.
answer
position:absolute;
question
Use the ________ or _______ property to clear a float.
answer
clear or overflow
question
what is the correct order to code CSS pseudo-classes.
answer
link, visited, hover, active
question
Which value for the display property is useful when configuring horizontal navigation within an unordered list?
answer
inline
question
what could be used to clear a right float.
answer
clear: right;
question
what configures a container to clear all floated elements that are within the container.
answer
overflow:auto;
question
what property is useful to remove the underline from a hyperlink.
answer
text-decoration
question
The _______ pseudo-class configures the styles that will apply for a hyperlink that has not been visited by the user.
answer
:link