I tried your suggestion. The most common paragraphs have a margin:
Code:
p {
text-indent: 0;
line-height: normal;
margin-bottom: 1em;
}
Code:
p.nomargin {
margin-bottom: 0;
margin-top: 0;
}
And it does not work, there's still a margin:
Code:
<p.nomargin>blablabla</p>
<p.nomargin>blablabla</p>
}