View Single Post
Old 04-02-2012, 05:27 AM   #1
Elle518
Junior Member
Elle518 began at the beginning.
 
Posts: 3
Karma: 10
Join Date: Apr 2012
Device: none
Create a space between some paragraphs

Hi everyone! I'm trying to figure it out how is the best/correct way to create spaces between some paragraphs.
I have different choices to make:

1st. Between .space { margin-top:2.5 em; }/.space { padding-top:2.5em; }

2nd. Between
Code:
<p>Text</p>
<p class="space">Text</p>
or
Code:
<p>Text</p>
<p class="space"></p>
<p>Text</p>
With this one I have the doubt if it's correct to leave code without any text between the tags.

or
Code:
<p>Text</p>
<p class="space">&nbsp;</p>
<p>Text</p>
Please, could you show me the best way to do it?
A lot of thanks!!!
Elle518 is offline   Reply With Quote