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/>
??
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/>
??
Use
margin-bottom : 6px;
on the element above the desired break. So, like
<p style="margin-bottom : 6px;">
text text text
</p>