I am working with a div that is 100% of the parent divs height.
The div only contains a single line of text.
The div cannot have a fixed height.
So m
Modern solution - works in all browsers and IE9+
caniuse - browser support.
.v-center { position: relative; top: 50%; -webkit-transform: translateY(-50%); -ms-transform: translateY(-50%); transform: translateY(-50%); }
Example: http://jsbin.com/rehovixufe/1/