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