Skip to content

Instantly share code, notes, and snippets.

@chinkouu
Created September 13, 2013 12:38
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 chinkouu/6550119 to your computer and use it in GitHub Desktop.
Save chinkouu/6550119 to your computer and use it in GitHub Desktop.
<h1>Center in both directions without measuring</h1>
<div class="container"
style="width: 200px; height: 200px; border: 1px solid grey">
<div class="center-absolute"
style="width: 120px; height: 50px; background-color: #ccc; padding: 5px">
This is a block of any size.
</div>
</div>
@import "compass";
body {
padding: 20px;
}
.container {
position: relative;
}
.center-absolute {
position: absolute;
margin: auto;
top: 0;
right: 0;
bottom: 0;
left: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment