Skip to content

Instantly share code, notes, and snippets.

@tariel
Created August 9, 2013 06:34
Show Gist options
  • Save tariel/6191571 to your computer and use it in GitHub Desktop.
Save tariel/6191571 to your computer and use it in GitHub Desktop.
Centered div
<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