Web Tech Chapter 7

10 September 2022
4.7 (114 reviews)
19 test answers

Unlock all answers in this set

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