Reputation: 726
I have a parent container which is flex and has 2 children. One of the is content and the other is sidebar which I want to be sticky. But it is not working. It's not sticky at all. Could you please tell me what I am doing wrong??
HTML
<div class="container">
<div class="side-bar">Side bar</div>
<div class="content">Content</div>
</div>
CSS
.container {
display: flex;
}
.side-bar {
box-shadow: 0 0 1px grey;
padding: 1rem 0.4rem;
align-self: start;
display: none;
flex-basis: 14rem;
margin-right: 0.7rem;
position:sticky;
top:1rem;
}
Upvotes: 0
Views: 106