Twitter Bootstrap - 100% Height

前端 未结 3 1092
醉酒成梦
醉酒成梦 2021-02-01 08:44

I\'m trying to design an Admin panel for my application using twitter-bootstrap framework but i cannot get my layout to work.

I was inspired by this design:

3条回答
  •  春和景丽
    2021-02-01 09:07

    I'm not so sure Bootstrap's grid model is what you're looking for here. You may instead be looking for absolute positioning. For example:

    #sidebar, #content {
        position: absolute;
        top: 0;
        bottom: 0;
    }
    #sidebar { left: 0; width: 10em; }
    #content { left: 10em; right: 0; }
    

    Try it out.

提交回复
热议问题