Paragraph spacing

I cannot find the option in Bricks, so i have to make complete line breaks, which are not best practice.

From my personal notes on a course im taking, paragraph spacing should be bigger than lineheight, but less than a complete line break.

I would like to have this option available

1 Like

You can probably do it by using lots of “Rich text” blocks, and then adjust the margins every time or with a class. But at that point, i just would not bother, and live with a worse design

Can you try this CSS code:

/* a paragraph proceeded by another paragraph will have a top margin */
p + p {
    margin-top: 8px;
}

Cheers

Patric

2 Likes

Doesnt seem to work for me, but unfamiliar with the selector, so may be my own fault.

It still would not be optimal though, since this way, you would have to adjust your margins depending on all your different font sizes and breakpoints.

With native support, it would be faster to setup and maintain.

1 Like