Reputation: 26051
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
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
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