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
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.