Complete the code to set a fallback font before the main font.
body { font-family: [1], Arial, sans-serif; }The font-family property lists fonts in order of preference. The first is the main font, followed by fallback fonts.
Complete the code to provide a fallback background color.
div { background: [1] linear-gradient(to right, #00ff00); }The background shorthand property can specify a color fallback before a gradient. The color is used if the gradient is not supported.
Fix the error in the fallback font list.
p { font-family: [1], 'Times New Roman', serif; }The font-family list should contain font names, not CSS properties.
Fill both blanks to set a fallback font and a fallback background color.
h1 { font-family: [1], Verdana, sans-serif; background: [2] linear-gradient(to right, #0000ff); }The first blank is a fallback font name, and the second blank is a fallback background color before the gradient.
Fill all three blanks to set fallback fonts and a fallback background color with a gradient.
section { font-family: [1], 'Courier New', monospace; background: [2] linear-gradient(to right, #ff0000, #0000ff) [3]; }The first blank is a fallback font, the second is a fallback background color before the gradient, and the third is a background-repeat value.