What does the background-position property in CSS control?
A). The size of the background image
B). The position of the background image within its container
C). The color of the background
D). The repeat behavior of the background image
What is the purpose of the radial-gradient() function in CSS?
A). To create a linear gradient
B). To create a radial gradient
C). To set a solid color
D). To add shadows to an element
What CSS property is used to create a linear gradient background?
A). background-gradient
B). linear-gradient
C). gradient-color
D). background-color
What does the background-image property do in CSS?
A). Sets the color of the text
B). Sets an image as the background
C). Adds a border around an element
D). Creates a shadow effect on an element
How can you define a linear gradient that transitions from red to blue?
A). linear-gradient(red, blue)
B). background: linear-gradient(red, blue)
C). background-color: linear-gradient(red, blue)
D). background-color: red; background-color: blue;
How do you create a repeating background pattern that tiles an image vertically but not horizontally?
A). background-repeat: repeat-y;
B). background-repeat: repeat-x;
C). background-repeat: no-repeat;
D). background-repeat: repeat;
What CSS property is used to create repeating patterns as backgrounds?
A). background-pattern
B). background-repeat
C). background-image
D). background-size
How do you specify the size of each background image when using multiple background images?
A). background-size: auto;
B). background-size: 100% 100%;
C). background-size: cover;
D). background-size: contain;
Which CSS property repeats a background image vertically and horizontally to fill the entire element?
A). background-size
B). background-repeat
C). background-position
D). background-attachment
What is the purpose of the background-size property in CSS?
A). To set the color of the text
B). To adjust the size of the background image
C). To add padding to an element
D). To create a shadow effect on an element