Ch7: Page Layout Basics Flashcards

1
Q

Which of the following psuedo-classes is the default state for a hyperlink that has already been clicked?

A

:visited

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

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?

A

relative positioning

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Which of the following properties can be used to clear a float?

A

clear or overflow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Which of the following causes an element not to display?

A

display: none;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Which of the following configures a hyperlink within the same website to the named fragment “contact” located on a web page named index.html?

A

Code an anchor element with the href attribute set to “index.html#contact”

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Which of the following is an image file that contains multiple small graphics?

A

sprite

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Which of the following configures a class called notes to float to the left?

A

.notes {
float: left;
}

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Which of the following is the rendering flow used by a browser by default?

A

normal flow

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Which of the following is an example of using a descendant selector to configure the anchor tags within the nav element?

A

nav a

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

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?

A

Set the position property to absolute

How well did you know this?
1
Not at all
2
3
4
5
Perfectly