I have a big paragraph of text that is divided into subparagraphs with <br>
's:
<p>
Blah blah blah.
<br/>
Blah blah blah. Blah blah blah. Blah blah blah.
<br/>
Blah blah blah.
</p>
I want to widen the gap between these subparagraphs, like there is two <br>
's or something like that. I know that the right way to do this is to use <p></p>
, but right now I cannot change this layout, so I am looking for CSS-only solution.
I've tried setting <br>
's line-height
and height
with display: block
, I also googled and stackoverflow-ed briefly, but did not find any solution. Is this even possible without changing the layout?