Site logo

Archived topic

Vertical space between list items

3 replies · Started by Enrico on May 7, 2016

Viewing posts 1–4 of 4

Good morning,

This code should insert a space between lines in the list but there is not space. How I could have space between lines in the list?

<ol>
 	<li>È meglio</li>
 	<li>Consiglio/li>
 	<li>Non dimenticarti</li>
</ol>

I have tried this but no space added.

<ol>
 	<li style="margin-bottom:20;">È meglio</li>
 	<li style="margin-bottom:20;">Consiglio/li>
 	<li style="margin-bottom:20;">Non dimenticarti</li>
</ol>

Try this CSS:

ol li {
    margin-bottom: 20px;
}

Thanks a lot Tom!
I discovered your new plugin Simple CSS too and is exactly what I needed, a Css customizer in each page!

Enrico

You're welcome :)

This archived topic is closed to new replies.