Auto height div with overflow and scroll when needed

后端 未结 10 2160
醉梦人生
醉梦人生 2020-12-08 06:45

I\'m trying to make a website with no vertical scrolling for a page, but i need that one of the DIVs i have to expand vertically to the bottom of the page (at most), and tha

10条回答
  •  有刺的猬
    2020-12-08 07:12

    i think it's pretty easy. just use this css

    .content {
       width: 100%;
       height:(what u wanna give);
       float: left;
       position: fixed;
       overflow: auto;
       overflow-y: auto;
       overflow-x: none;
    }
    

    after this just give this class to ur div just like -

    your stuff goes in...

提交回复
热议问题