With indents I mean first-line indents in every paragraph. Sure, you can add them by adding back <p></p> to every paragraph, but why remove them the first time?
And <p></p> does not give extra space, at least not if you have them properly styled. In fact, a style such as "p { margin: 0, text-indent: 0; padding: 0; }" should give the same visual appearance as <br/>, but with the advantage of it being more semantic, easier to modify, and easier to process (some applications process one paragraph at a time, if everything is a single paragraph they'll struggle to process everything in one chunk).
|