About Margins in CSS
Margins of adjacent elements are not additive, they overlap each other. For example, with this HTML:
<h1>Hello, World!</h1>
<p>Welcome here!</p>
and this CSS:
h1 { margin: 3rem; }
p { margin: 2rem; }
the spacing between "Hello, World!" and "Welcome here!" will be 3rem
, not 5rem
.
Also by me
Django Paddle Subscriptions app
For Django-based SaaS projects.
Django App for You
Django GDPR Cookie Consent app
For Django websites that use cookies.
Django App for You