Skip to content

Instantly share code, notes, and snippets.

@timdp
Created July 30, 2013 17:05
Show Gist options
  • Save timdp/6114837 to your computer and use it in GitHub Desktop.
Save timdp/6114837 to your computer and use it in GitHub Desktop.
<!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