How to adjust the line height with CSS?

The br tag can not be styled with CSS (for reasons, google)

I was able to get nice paragraph spaces in edit mode with this:

/*Add Paragraph Spacing in edit mode*/
.markdown-source-view.mod-cm6 .cm-line{
padding-bottom:16px;
}


Example in edit mode

However i am unable to add any paragraph spacing in view mode. I have inspected the code and apparently Obsidian puts together multiple paragraphs into one single p element - which makes it impossible to me to add spacing to the individual paragraphs. Has anyone had any success with this?


Example in view mode

4 Likes