feat: Implement clearfix before headers

This commit is contained in:
Thomas A. Christensen II 2024-11-20 16:26:20 -06:00
parent db5b9d8163
commit 6c3c08400b
Signed by: millironx
GPG key ID: B7044A3432851F64

View file

@ -253,6 +253,22 @@ blockquote small {
float: right;
max-width: 50%;
}
/*
Clearfix implementation
*/
h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
content: " "; /* Older browser do not support empty content */
visibility: hidden;
display: block;
height: 0;
clear: both;
}
} /* end @media */
@supports (animation-timeline: scroll()) {