HTML&CSS + Twitter Bootstrap: full page layout or height 100% - Npx

前端 未结 4 1334
遥遥无期
遥遥无期 2020-12-07 10:55

I\'m trying to make following layout:

  +-------------------------------------------------+
  |       Header + search (Twitter navbar)          |
           


        
4条回答
  •  时光取名叫无心
    2020-12-07 11:21

    I know it's late in the day but might help someone else!

    body,html {
      height: 100%;
    }
    
    .contentarea {
    
     /* 
      * replace 160px with the sum of height of all other divs 
      * inc padding, margins etc 
      */
      min-height: calc(100% - 160px); 
    }
    

提交回复
热议问题