In my webpage, I have split the layout into three sections: left, middle, and right. Using bootstrap, the left and right sections are set to 3 columns each, while the middle section is 6 columns. I want only the middle section to be scrollable, while the other two remain fixed in place.
I am aware of the CSS property position: fixed, but when I apply it, the left and right sections end up overlapping. Is there a way to keep them fixed without explicitly setting the position by defining the left and right CSS attributes? I'm looking for a solution that will adjust automatically if I make changes in the future.
Thank you in advance!