So close to a larger solution, but stuck on this little issue...
I have this HTML...
Code HTML4Strict:
<p><span class="byline"><b>2 days ago - by Kate Shaw</b> | Posted in: Nobel Intent</span></p>
<p>
Individuality increases with group size in rodents, making it
easier to recognize group members among lots of potential targets.
</p>
I want to apply a Bottom Margin
only when there is a <P> by itself.
If there is a <P> tag and something else (e.g. "<p><span class="byline">") then the Bottom Margin I define here...
Code CSS:
p{
margin: 0.2em 0 2em 0;
font: 0.8em/1.3 arial;
}
should be ignored!!!
Bookmarks