Align DIV to bottom of the page

前端 未结 6 1844
萌比男神i
萌比男神i 2020-12-15 16:54

I have a DIV that needs to be aligned to the bottom of a search result page, problem is whenever there is no search result or less

6条回答
  •  情书的邮戳
    2020-12-15 17:18

    Try position:fixed; bottom:0;. This will make your div to stay fixed at the bottom.

    WORKING DEMO

    The HTML:

    MY DIV

    The CSS:

    #bottom-stuff {
    
        position: relative;
    }
    
    #bottom{
    
        position: fixed; 
        background:gray; 
        width:100%;
        bottom:0;
    }
    
    #search{height:5000px; overflow-y:scroll;}
    

    Hope this helps.

提交回复
热议问题