Okay, so I'm even more of an idiot than I thought I was...
Anyway, I have this:
Code:
p {
text-indent: 0;
line-height: normal;
margin-bottom: 1em;
}
and this:
Code:
.nomargin {
margin-bottom: 0em;
}
But when I write this:
Code:
<p class="nomargin">Blablabla</p>
<p class="nomargin">Blablabla</p>
<p>Blablabla</p>
There's still a margin-bottom between these three paragraphs. The "nomargin" class ain't doing shit.
What am I missing here?