Layout with fixed header and footer, fixed width sidebar and flexible content

后端 未结 3 735
-上瘾入骨i
-上瘾入骨i 2020-12-23 10:31

I\'m trying set up a layout that will look like this: \"enter

I want to use twitter bo

3条回答
  •  轮回少年
    2020-12-23 11:17

    Now that Bootstrap 4 is out I thought some may benefit from this layout which is now a little easier thanks to flexbox.

    Bootstrap 4 Demo

    
     
    Header
    Menu
    Main
    .grow { flex: 1; overflow: hidden; } .main,.side { overflow-y: auto; height:calc(100% - 55px); } .footer,.header { height: 55px; }

提交回复
热议问题