How to align content of a div to the bottom

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

Say I have the following CSS and HTML code:

26条回答
  •  半阙折子戏
    2020-11-22 01:43

    a very simple, one-line solution, is to add line-heigth to the div, having in mind that all the div's text will go bottom.

    CSS:

    #layer{width:198px;
           height:48px;
           line-height:72px;
           border:1px #000 solid}
    #layer a{text-decoration:none;}
    

    HTML:

    
    

    keep in mind that this is a practical and fast solution when you just want text inside div to go down, if you need to combine images and stuff, you will have to code a bit more complex and responsive CSS

提交回复
热议问题