tags:

views:

57

answers:

1

Is there a more efficient way than

<div style="height: 6px;"></div>

To make a "narrow" line break? i.e. narrower than

text text text<br/><br/>

??

+7  A: 

Use

margin-bottom : 6px;

on the element above the desired break. So, like

<p style="margin-bottom : 6px;">
    text text text
</p>
harpo
I had to use spans with display: block applied as well
Shadow