How to align content of a div to the bottom

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

Say I have the following CSS and HTML code:

26条回答
  •  灰色年华
    2020-11-22 01:45

    Use CSS positioning:

    /* Creates a new stacking context on the header */
    #header {
      position: relative;
    }
    
    /* Positions header-content at the bottom of header's context */
    #header-content {
      position: absolute;
      bottom: 0;
    }
    

    As cletus noted, you need identify the header-content to make this work.

    some header content
    
    
    bottom

提交回复
热议问题