Suppose this HTML:
<h1>heading</h1>
<p>foo</p>
<p>bar</p><!---this should be selected--->
<h1>heading</h1>
<p>foo</p>
<p>bar</p>
<p>foo</p>
<p>bar</p><!---this should be selected--->
And to select this only with CSS is not possible?
I was trying it like this:
h1 ~ p:last-child /*wouldn't work*/ /* it would select last-child of p*/