How to implement fixed sidebar correctly?

后端 未结 3 1877
梦谈多话
梦谈多话 2021-01-30 11:32

I\'m trying to accomplish this design: \"example Where the sidebar will be fixed, but the right side (the main con

3条回答
  •  死守一世寂寞
    2021-01-30 12:00

    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.

提交回复
热议问题