How to align content of a div to the bottom

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

Say I have the following CSS and HTML code:

26条回答
  •  一整个雨季
    2020-11-22 01:57

    I have devised a way which is a lot simpler than what's been mentioned.

    Set the height of the header div. Then inside that, style your H1 tag as follows:

    float: left;
    padding: 90px 10px 11px
    

    I'm working on a site for a client, and the design requires the text to be at the bottom of a certain div. I've achieved the result using these two lines, and it works fine. Also, if the text does expand, the padding will still remain the same.

提交回复
热议问题