Ch6: More CSS Basics Flashcards
Which of the following is the CSS property that configures a drop shadow effect on text?
text-shadow
Which CSS property configures the area between the content and the border?
padding
Which CSS property will configure rounded corners?
border-radius
Which CSS property can be used to resize or scale a background image?
background-size
Which of the following, from outermost to innermost, oare components of the box model?
margin, border, padding, content
Which CSS property configures the empty space between adjacent elements?
margin
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?
padding: 15px 0 5px 0;
Which of the following is used along with the width property to configure horizontally centered page content?
Set the margin-left and margin-right properties to auto
Which CSS property will configure a gradient background?
background-image
Which of the following will configure a border that is 5 pixels wide, the color #330000, and a solid line?
border: 5px solid #330000;