I\'m trying to accomplish this design: Where the sidebar will be fixed, but the right side (the main con
Here is another alternative by using only two CSS lines
.sidebar { position: sticky; top: 0; }
and the credit goes to this post.
You can also experiment with the code over here.