How to align content of a div to the bottom

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

Say I have the following CSS and HTML code:

26条回答
  •  深忆病人
    2020-11-22 02:05

    Seems to be working:

    HTML: I'm at the bottom

    css:

    h1.alignBtm {
      line-height: 3em;
    }
    h1.alignBtm span {
      line-height: 1.2em;
      vertical-align: bottom;
    }
    

提交回复
热议问题