Complete the code to set the background image position to the top left corner.
background-position: [1];repeat which is for background-repeat, not position.top without the horizontal position.The background-position property sets the starting position of a background image. top left places it at the top left corner.
Complete the code to center the background image horizontally and vertically.
background-position: [1];center which defaults the other axis to top or left.background-position with background-repeat.Using center center places the background image exactly in the middle horizontally and vertically.
Fix the error in the code to correctly position the background image 20 pixels from the left and 10 pixels from the top.
background-position: [1];The first value is the horizontal offset (left to right), so 20px is horizontal and 10px is vertical (top to bottom).
Fill both blanks to position the background image at the bottom right corner using keywords.
background-position: [1] [2];
top or left instead of right or bottom.The background-position property accepts two values: horizontal then vertical. right bottom places the image at the bottom right corner.
Fill all three blanks to position the background image 15 pixels from the left, 25 pixels from the top, and prevent it from repeating.
background-position: [1] [2]; background-repeat: [3];
repeat instead of no-repeat.The first two values set the horizontal and vertical position in pixels. The background-repeat property set to no-repeat stops the image from repeating.