How to align content of a div to the bottom

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

Say I have the following CSS and HTML code:

26条回答
  •  离开以前
    2020-11-22 01:41

    I use these properties and it works!

    #header {
      display: table-cell;
      vertical-align: bottom;
    }
    

提交回复
热议问题