CSS quiz: The color of the h2 is…

(with native CSS, no preprocessor like Sass).

```
<div>
<h2>A heading</h2>
</div>
```

```
div, #cssisawesome {
h2 {
color: red;
}
}

div h2 {
color: blue;
}
```

red
33.3%
blue
64.9%
black (initial)
1.8%
Poll ended at .
@matuzo Uh! Never thought about specificity and nesting. Initiative answer: Blue. But pretty sure I stepped into a trap.