Can I change the styles of the last p only with CSS?
- by Luli
I've got several p tags in the content of a page. I want to change the color of the last one before the div that hold them. Can I do this just with CSS?
<div class="text">
<p>P One</p>
<p>P Two</p>
<p>P Three</p>
<p>P Four (this is the one I'd like to modify)</p>
</div>
Thanks