Quote:
Originally Posted by Turtle91
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).