Skip to content

Instantly share code, notes, and snippets.

@seoyoochan
Created July 13, 2015 05:13
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save seoyoochan/e4a1b9b25ee9724ba30f to your computer and use it in GitHub Desktop.
Save seoyoochan/e4a1b9b25ee9724ba30f to your computer and use it in GitHub Desktop.
Centering element without width
<div class="container">
<div class="center_div">
</div>
</div>
.container{
float: left;
left: 50%;
position: relative;
}
.center_div{
position: relative;
left: -50%;
float: left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment