Which CSS selector applies to the yellow element(s) only? Select the correct answers!
Options
h1-.content { ... }
h1#content { ... }
.content h1 { ... }
#content h1 {...}
Other
Preview
<div id="header">
<h1>Website.com</h1>
</div>
<div id="content">
<h1>Hello!</h1>
<p>bla bla</p>
</div>
«
1
2
3
4
5
6
7
8
9
10
»