I want to add padding to the first h2 child, only if it's the "first element" inside the parent.
<div id="test">
<h2>Try 1</h2>
Test Test Test
<h2>Try 2</h2>
</div>
here only h2 with text "Try 1" must get my custom padding.
<div id="test">
Test Test Test
<h2>Try 1</h2>
<h2>Try 2</h2>
</div>
Here no (there is text before).
Tried this :
h2
{
padding-top:0;
}
#test h2:first-child
{
padding-top:40px;
}
but it is no enough! Can I do this with CSS2?
