Last active
December 19, 2015 22:09
-
-
Save zwang/6025220 to your computer and use it in GitHub Desktop.
Make the inner Div center horizontally and vertically in the outer div
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
<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