Created
July 30, 2013 17:05
-
-
Save timdp/6114837 to your computer and use it in GitHub Desktop.
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> | |
<head> | |
<title>Flexbox</title> | |
<style> | |
html, body { | |
margin: 0; | |
padding: 0; | |
height: 100%; | |
} | |
#outer { | |
background: #9F9; | |
width: 100%; | |
height: 100%; | |
display: -webkit-flex; | |
display: flex; | |
-webkit-align-items: center; | |
align-items: center; | |
} | |
#inner { | |
background: #F99; | |
width: 100%; | |
text-align: center; | |
} | |
#content { | |
background: #99F; | |
color: #009; | |
font: bold 24pt sans-serif; | |
display: inline; | |
} | |
</style> | |
</head> | |
<body> | |
<div id="outer"> | |
<div id="inner"> | |
<div id="content">Hello, world</div> | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment