The <br> tag should only be used to break the line ie <p>This is first line <br> This is second line.</p>
For the interval that I would have to talk about, based on my personal experience and the observation of most margin frameworks, itβs best to create spaces between paragraphs.
Demo
CSS
p{ margin: 0 0 10px; }
Edit: I like @Tim Medora's solution much better: p + p { margin-top: 8px; } p + p { margin-top: 8px; } , adding an upper marker to adjacent p-tags, we eliminate the problems with the first and last p-marks, which are usually found.
source share