How to align content of a div to the bottom

后端 未结 26 2899
挽巷
挽巷 2020-11-22 01:13

Say I have the following CSS and HTML code:

26条回答
  •  萌比男神i
    2020-11-22 02:08

    The site I just did for a client requested that the footer text was a high box, with the text at the bottom I achieved this with simple padding, should work for all browsers.

    
    
    #footer {
      padding: 0 30px;
      padding-top: 60px;
      padding-bottom: 8px;
    }
    

提交回复
热议问题