How to make a fixed column in CSS using CSS Grid Layout?

前端 未结 8 1842
南方客
南方客 2020-12-04 18:35

I\'ve made a simple site with a #container div that is parent to two divs: #left and #right, by using Grid Layout:

Is there an

8条回答
  •  慢半拍i
    慢半拍i (楼主)
    2020-12-04 18:57

    I stumbled upon this today and got it working by adding:

    #left {
      position: sticky;
      left: 0;
    }
    

提交回复
热议问题