I use
<br />
to insert blank lines on my webpage. What is an elegant way to do the equivalent of 20 - 40 of these? After formatting, each br tag is put on a separate line which make reading the file cumbersome.
Old question, but evergreen.
If you really want to use multiple < br > tags, you can do so with
<br /> <br />
I find this useful when I want whitespace between paragraphs. Using Div tags to do that is a really bad overkill hack, sorry guys. :-)
min-height
, margin
and padding
.
You can define CSS styles for that, like
.space { margin-top: 300px; }
And insert it wherever you want to...
<div class="space"></div>
Hope that helps...
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With