Alex S
Alex S

Reputation: 26051

Narrow Line Break

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/>

??

Upvotes: 0

Views: 2255

Answers (2)

Otroberts
Otroberts

Reputation: 347

I think the best way is to sort out the margin so go ahead and input:

margin-bottom:6px;

<p style="margin-bottom:6px;">
     Whatever text you want </p>

Best of luck!

Upvotes: 0

harpo
harpo

Reputation: 43158

Use

margin-bottom : 6px;

on the element above the desired break. So, like

<p style="margin-bottom : 6px;">
    text text text
</p>

Upvotes: 7

Related Questions