Margin below ol

I have a numbered list of bulletpoints. After each bullet line, I would like a little more space.

How do I do that?

This is my failed attempt:

#content ol li {
    padding-bottom: 55px;
}

Thanks,

Jon

Hm, I’m surprised that didn’t work. There may be something else going on here. Other options to try would be

margin-bottom: 55px;

or perhaps something like

line-height: 55px;

(as long as the LIs are one-liners).

We’d need to see more code to identify the issue. Do you perhaps have a live site we can look at? Or at the very least, full code (HTML and CSS) to replicate the issue on our end?