Add margin only to the top of a <p> following a <p>

This way if something other than a paragraph follows the paragraph it won't
automatically and unnecessarily be pushed down.
This commit is contained in:
Tom Willemse 2023-12-07 21:40:37 -08:00
parent 99c5ca9fb2
commit 334b8b6a05

View file

@ -109,7 +109,7 @@ pre {
p { margin: 0; } p { margin: 0; }
p + p { margin: 1rem 0; } p + p { margin: 1rem 0 0 0; }
.footdef { .footdef {
display: grid; display: grid;