Ch7: Page Layout Basics Flashcards
Which of the following psuedo-classes is the default state for a hyperlink that has already been clicked?
:visited
Which of the following is used to change the location of an element slightly in relation to where it would otherwise appear on the page?
relative positioning
Which of the following properties can be used to clear a float?
clear or overflow
Which of the following causes an element not to display?
display: none;
Which of the following configures a hyperlink within the same website to the named fragment “contact” located on a web page named index.html?
Code an anchor element with the href attribute set to “index.html#contact”
Which of the following is an image file that contains multiple small graphics?
sprite
Which of the following configures a class called notes to float to the left?
.notes {
float: left;
}
Which of the following is the rendering flow used by a browser by default?
normal flow
Which of the following is an example of using a descendant selector to configure the anchor tags within the nav element?
nav a
Which of the following is used along with the left, right, and/or top property to precisely configure the position of an element outside of normal flow?
Set the position property to absolute