Given the following html (I only included three divs below, but let's imagine that there are many more divs )
<div id="1">
<p>hi</p><p>Peter</p>
</div>
<div id="2">
<p> hola</p><p>Peter</p>
</div>
<div id="3">
<p>kaixo</p><p>Peter</p>
</div>
I would like to have a selector that selects all <p>
for a given <div id="x">
does CSS3 allow you to design such selector?
Thanks!