Which CSS rule will make a web page’s background crimson?

(1 point)
Responses

background {color: crimson;}

background {color: crimson;}

* {background-color: crimson;}

* {background-color: crimson;}

* {color: crimson;}

* {color: crimson;}

all {background-color: crimson;}

1 answer

The correct CSS rule to make a web page's background crimson is:

* {background-color: crimson;}

This rule applies the crimson background color to all elements on the page.