Quote:
Originally Posted by theducks
Blank Lines in Codeview have no effect of the book view, it just makes the code easier to read where a piece starts and ends
Code:
<p class="foo">Stuff</p>
<p class="foo">MoreStuff</p>
Margin top/bottom in the .foo CSS style sets the paragraph gap
Margin left/right sets the  edges
Text-indent sets the paragraph indent
|
Better coding is to forget .foo and use just <p> and set the p style in CSS. It's just crazy to have all those class statements for p when they aren't actually needed at all.