Question 9 C

Which CSS3 property determines whether the page background extends into the border or not?

A. background-clip.

B. background-size.

C. background-position.

D. background-origin.

The background extends behind the border :)

background-clip lets you control how far a background image or color extends beyond an element's padding or content.

background-size allows you do control the size and repitition of your background.

background-position sets the initial position for each background image.

background-origin defines where to paint the background: across the whole element, inside the border, or inside the padding..