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
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