Created
August 9, 2013 06:34
-
-
Save tariel/6191571 to your computer and use it in GitHub Desktop.
Centered 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> | |
#container { width:200px; height:200px; background-color:yellow; position:relative; } | |
#content { left:50%; top:50%; transform:translate(-50%,-50%); -webkit-transform:translate(-50%,-50%); background-color:gray; color:white; position:absolute; } | |
</style> | |
<div id="container"><div id="content">Hello World</div></div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment