mirror of
https://github.com/phuoc-ng/csslayout.git
synced 2025-10-23 02:36:11 +02:00
472 B
472 B
layout, title, description, keywords
layout | title | description | keywords |
---|---|---|---|
layouts/post.njk | Sticky header | Create a sticky header with CSS | css layout, css position sticky, css sticky header |
HTML
<div>
<header class="sticky-header__header">
...
</header>
<main>
...
</main>
</div>
CSS
.sticky-header__header {
/* Stick to the top */
position: sticky;
top: 0;
}
{% demo %}{% include "covers/sticky-header.njk" %}{% enddemo %}