View Single Post
Old 01-22-2024, 08:31 AM   #5
chantsing
Member
chantsing began at the beginning.
 
Posts: 15
Karma: 10
Join Date: Jan 2024
Device: window
Quote:
Originally Posted by theducks View Post
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.
chantsing is offline   Reply With Quote