Created
February 4, 2013 14:09
-
-
Save mikewest/4706909 to your computer and use it in GitHub Desktop.
This file contains 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> | |
<style> | |
html { | |
height: 100%; | |
} | |
body { | |
display: -webkit-flex; | |
-webkit-justify-content: center; | |
-webkit-align-items: center; | |
min-height: 100%; | |
} | |
div { | |
width: 200px; | |
height: 200px; | |
background: green; | |
} | |
</style> | |
</head> | |
<body> | |
<div>OMG!</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment