Ch6: More CSS Basics Flashcards

1
Q

Which of the following is the CSS property that configures a drop shadow effect on text?

A

text-shadow

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

Which CSS property configures the area between the content and the border?

A

padding

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

Which CSS property will configure rounded corners?

A

border-radius

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

Which CSS property can be used to resize or scale a background image?

A

background-size

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

Which of the following, from outermost to innermost, oare components of the box model?

A

margin, border, padding, content

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

Which CSS property configures the empty space between adjacent elements?

A

margin

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

Which of the following will configure padding that is 15px on the top, 0 pixels on the left and right, and 5px on the bottom?

A

padding: 15px 0 5px 0;

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

Which of the following is used along with the width property to configure horizontally centered page content?

A

Set the margin-left and margin-right properties to auto

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

Which CSS property will configure a gradient background?

A

background-image

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

Which of the following will configure a border that is 5 pixels wide, the color #330000, and a solid line?

A

border: 5px solid #330000;

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