Skip to content

Instantly share code, notes, and snippets.

@lewang
Created April 2, 2014 00:46
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 lewang/9925974 to your computer and use it in GitHub Desktop.
Save lewang/9925974 to your computer and use it in GitHub Desktop.
Absolute centering.
<div id="container">
<div id="inner">content</div>
</div>
// ----
// Sass (v3.3.4)
// Compass (v1.0.0.alpha.18)
// ----
#container {
background: red;
width: 300px;
height: 100px;
margin: auto;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: scroll;
}
div {
color: green;
}
#container {
background: red;
width: 300px;
height: 100px;
margin: auto;
position: fixed;
top: 0;
right: 0;
bottom: 0;
left: 0;
overflow-y: scroll;
}
div {
color: green;
}
<div id="container">
<div id="inner">content</div>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment