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
Wrap the text in a span or similar and use the following CSS:
span
.your-div { position: relative; } .your-div span { position: absolute; bottom: 0; right: 0; }