Bootstrap, keep div fixed after scrolling to it
I found the way to fix the position but my content is too much and overflowed How to make the content scrollable in the fixed position?
Bootstrap, keep div fixed after scrolling to it
I found the way to fix the position but my content is too much and overflowed How to make the content scrollable in the fixed position?
You can just set a maximum height <= 100vh to keep the entire element within view. Then set overflow to scroll or auto. Auto adds scrollbars only when necessary.
max-height: 90vh;
overflow: auto;
See my fiddle