I'd like to put some space between the <p>
s en the E's. But don't know how to do it without smashing my spacebar.
.footer_box p {
display: inline-block;
}
<div id="footer_box">
<p>Aantal M²:</p>
<p>Schuren:</p>
<p style="float:left;">Behandeling:</p>
<p>E</p>
<p>Afwerking:</p>
</div>
` element after the `P`, thats what it was invented for, creating a new line. use a more correct element for the use case `P` is a Paragraph, which is not what you are representing. that way, you will not need to redefine the `P` element. – Rafael Herscovici Jan 29 '19 at 13:00
and
to make space between elements – Niraj patel Jan 29 '19 at 13:02