Modifying line height between paragraph - Under bullet points

Hello. I referred to Damonz post and learnt to use CSS on line height between paragraphs.
Works great!

However, it doesnt appear so well when the paragraph ends with a bullet point.

Please help.

Because lists are not paragraphs. :wink:
The HTML tag for an unordered list is <ul> and <ol> for an ordered, see here: HTML Lists

So you can target a list in CSS using these tags, like:

ul {
    margin-bottom: 1em;
}

But you should also be more specific or else ALL <ul> in the page will be impacted, including those that are used in the menus…

Something like this will limit the CSS rule to the lists in BB Text modules:

.fl-rich-text ul {
    margin-bottom: 1em;
}