Join the AI Workshop and learn to build real-world apps with AI. A hands-on, practical program to level up your skills.
To make a sidebar sticky while still fitting on shorter screens, use this CSS:
.sidebar {
position: sticky;
top: 0;
height: 100vh;
overflow-y: auto;
}
Using Tailwind CSS:
<div class='sticky top-0 h-screen overflow-y-auto'>
...
</div>