Quote:
Originally Posted by theducks
FWIW I now avoid non-zero margin-bottom when possible and use the top one of the next P, for most spacing
|
As what you said, i use the following CSS code to avoid non-zero margin-bottom in .
Code:
p {
text-indent:2.5em;
margin: 0 0 20px;
padding: 0;
line-height: 1.8;
margin-bottom: 0px;
}
But, it does not work.