Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
/* Sticky table header */ th { position: sticky; top: 0; /* Sticks when it reaches the top of the scroll container */ background: white; z-index: 1; } /* Sticky sidebar in an article */ .sidebar { position: sticky; top: 80px; /* Sticks 80px from top (below navbar) */ max-height: calc(100vh - 80px); overflow-y: auto; }
Result
Open