I have tried to center this vertically in body (not horizontally). Also, I do not want to specify heights or anything like that. I tried adding a wrapper with a
body
See this edited version of your jsFiddle.
Basically, just wrap your content in , and add the following CSS:
html, body { height: 100%; } .main { height: 100%; width: 100%; display: table; } .wrapper { display: table-cell; height: 100%; vertical-align: middle; }