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
blue
black (initial)
Poll ended at .
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;
}
```