Complete the code to make the background image cover the entire element.
background-size: [1];The cover value makes the background image cover the entire element, scaling it as needed.
Complete the code to make the background image fit inside the element without cropping.
background-size: [1];The contain value scales the background image to fit inside the element without cropping.
Fix the error in the code to set the background size to half the element's width and height.
background-size: [1];Using 50% sets the background size to half the width and height of the element.
Fill both blanks to set the background size to 100 pixels wide and 50 pixels tall.
background-size: [1] [2];
The first value sets the width to 100 pixels, and the second sets the height to 50 pixels.
Fill all three blanks to set the background size to 80% width, 40% height, and ensure the image does not repeat.
background-size: [1] [2]; background-repeat: [3];
The background size is set to 80% width and 40% height, and no-repeat stops the image from repeating.