How to use CSS position sticky to keep a sidebar visible with Bootstrap 4

前端 未结 4 479
醉酒成梦
醉酒成梦 2020-12-03 08:47

I have a two columns layout like this:

 
4条回答
  •  心在旅途
    2020-12-03 08:57

    I solved enabling flexbox. After raising an issue in Bootstrap's Github repository I got an answer by a Bootstrap member:

    The .col-xs-4 isn't as tall as the .col-xs-8, so there's basically no space for the Menu to "float" within when the stickiness kicks in. Make the .col-xs-4 taller and things work fine: https://codepen.io/anon/pen/OXzoNJ If you enable the Flexbox version of our grid system (via $enable-flex: true;), you get automatic equal-height columns for free, which comes in handy in your case.

提交回复
热议问题