-
not many things make me angrier than CSS that sets
margin-bottomon p tags. Here’s what I do: .flow { --flow-space: 1em; } .flow > * + * { margin-top: 1em; /* just in case custom props not supported */ margin-top: var(--flow-space); } More info: 24ways.org/2018/managing-flow-and-rhythm-with-css-custom-properties/ -
…in reply to @piccalilli_
Of course, we have you covered on layoutplusplus with ‘The Stack’ every-layout.dev/layouts/stack/