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"> </p>
<p>Text</p>
Please, could you show me the best way to do it?
A lot of thanks!!!