Skip to content

Instantly share code, notes, and snippets.

@nternetinspired
Created July 14, 2014 08:09
Show Gist options
  • Select an option

  • Save nternetinspired/6365dc8a98a25f28846e to your computer and use it in GitHub Desktop.

Select an option

Save nternetinspired/6365dc8a98a25f28846e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<div class="center-me"></div>
// ----
// Sass (v3.3.10)
// Compass (v1.0.0.alpha.20)
// ----
// Vertically and horizontally center something of unknown size inside and parent of unknown size.
@mixin centered {
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
.center-me {
background: #eee;
display: inline-block;
padding: 5em;
@include centered;
}
.center-me {
background: #eee;
display: inline-block;
padding: 5em;
position: absolute;
top: 50%;
left: 50%;
-webkit-transform: translate(-50%, -50%);
-ms-transform: translate(-50%, -50%);
transform: translate(-50%, -50%);
}
<div class="center-me"></div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment