How to disable vertical scroll in bootstrap column

后端 未结 3 2029
情话喂你
情话喂你 2021-01-14 09:07

I have two bootstrap columns \"left\" and \"right\"; I want to fix the left column with the screen and disable scroll. but i want to enable scroll in the right column which

3条回答
  •  清酒与你
    2021-01-14 09:38

    Just make the left column fixed. You don't need to use overflow-y, it is used when you need scrolling within the element.

    .fixed {position: fixed !important; top: 0px; left: 0px; bottom: 0px; background: red;}
    .scrollable {background: yellow;}
    
    
    Fixed





    Scrollable




    Scrollable




    Scrollable




    Scrollable




    Scrollable




    Scrollable




    Scrollable




    Scrollable




    Scrollable




    Scrollable

提交回复
热议问题