Created
January 31, 2014 18:55
-
-
Save ryndel/8740611 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!doctype html> | |
<html> | |
<head> | |
<meta charset="UTF-8"> | |
<title>Center vertically with table layout</title> | |
<style> | |
#wrapper {display:table;} | |
#cell {display:table-cell; vertical-align:middle;} | |
</style> | |
</head> | |
<body> | |
<div id="wrapper"> | |
<div id="cell"> | |
<div class="content"> | |
Content goes here | |
</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment