Skip to content

Instantly share code, notes, and snippets.

@zwang
Last active December 19, 2015 22:09
Show Gist options
  • Save zwang/6025220 to your computer and use it in GitHub Desktop.
Save zwang/6025220 to your computer and use it in GitHub Desktop.
Make the inner Div center horizontally and vertically in the outer div
<style>
#outer
{
background:red;
display:table;
width: 100%;
height:600px;
}
#inner
{
display: table-cell;
text-align: center;
vertical-align: middle;
}
</style>
<body>
<div id="outer">
<div id="inner">
hello World
</div>
</div>
</body>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment