Created
August 20, 2012 21:27
-
-
Save erotte/3408061 to your computer and use it in GitHub Desktop.
verticaly centered with display: table-cell
This file contains hidden or 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 lang="de" class="no-js"> | |
<head> | |
<meta charset="utf-8"> | |
<title>untitled</title> | |
<meta name="author" content="Eckhard Rotte"> | |
<style type="text/css" media="screen"> | |
html, body { | |
height: 100%; | |
} | |
#outer { | |
height: 100%; | |
display: table; | |
} | |
.content{ | |
width : 100%; | |
height : 100%; | |
background: #ead; | |
display : table-cell; | |
vertical-align: middle; | |
} | |
.inner { | |
display : block; | |
padding : 10px; | |
background : #adc; | |
height: 20px; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="outer"> | |
<div class="content"> | |
<div class="inner">verticaly centered with display: table-cell</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment