Align DIV to bottom of the page

前端 未结 6 1834
萌比男神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:27

    Simple 2020 no-tricks method:

    body {
        display: flex;
        flex-direction: column;
    }
    
    #footer {
        margin-top: auto;
    }
    

提交回复
热议问题