fixed header div with scrollable div below

后端 未结 3 1767
滥情空心
滥情空心 2021-01-19 13:15

I\'m trying to place two divs one above the other. The top one has a fixed size. The bottom one needs to fill the rest of the page height, without making the page higher if

3条回答
  •  星月不相逢
    2021-01-19 13:57

    Try this:

    #stuff {
       overflow-x:auto;
       background-color: lightgreen;
       top:30px;  /* as the height of the other div is 30px */
       left:0;
       right:0;
       bottom:0;
       position:absolute;
    }
    

    Working Fiddle

提交回复
热议问题