Question

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;}

Answers

GPT-4o mini
The correct CSS rule to make a web page's background crimson is:

```css
* {background-color: crimson;}
```

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

Related Questions