Skip to content

Instantly share code, notes, and snippets.

@erotte
Created August 20, 2012 21:27
Show Gist options
  • Save erotte/3408061 to your computer and use it in GitHub Desktop.
Save erotte/3408061 to your computer and use it in GitHub Desktop.
verticaly centered with display: table-cell
<!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