Put text at bottom of div

前端 未结 5 1639
灰色年华
灰色年华 2020-12-02 07:10

I have 4 DIV\'s right next to each other, and they\'re all centered in the middle of the screen. I have 2 words in each div, but I don\'t want them at the top, I want them t

5条回答
  •  借酒劲吻你
    2020-12-02 07:49

    If you only have one line of text and your div has a fixed height, you can do this:

    div {
        line-height: (2*height - font-size);
        text-align: right;
    }
    

    See fiddle.

提交回复
热议问题