View Single Post
Old 02-12-2017, 03:32 PM   #21
Jellby
frumious Bandersnatch
Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.Jellby ought to be getting tired of karma fortunes by now.
 
Jellby's Avatar
 
Posts: 7,550
Karma: 19500001
Join Date: Jan 2008
Location: Spaniard in Sweden
Device: Cybook Orizon, Kobo Aura
Quote:
Originally Posted by Turtle91 View Post
Although, as I said, I use something like:
<div class="someclass">
<p>something</p>
<p>someone</p>
<p>somewhere</p>
</div>
There's no need to use <p> at all. I avoid it when it's not running text:

Code:
<div class="someclass">
<div>something</div>
<div>someone</div>
<div>somewhere</div>
</div>
With <div>s (or <p>s) you can easily control spacing, margins, etc. With <br>s... not so simple (and it gets messy with long entries).
Jellby is offline   Reply With Quote