Vertical centering text in div
Wow I found some useful tricks how to center text in div: http://www.vanseodesign.com/css/vertical-centering/.
This is probably the best one - it works even when both height of text and height of parent div are not known:
.parent { position: relative; } .centeredchild { text-align: center; position: absolute; top: 0; bottom: 0; left: 0; right: 0; width: 50%; height: 30%; margin: auto; }













