Put text at bottom of div

前端 未结 5 1650
灰色年华
灰色年华 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 08:00

    Wrap the text in a span or similar and use the following CSS:

    .your-div {
        position: relative;
    }
    
    .your-div span {
        position: absolute;
        bottom: 0;
        right: 0;
    }
    

提交回复
热议问题