Skip to content

Instantly share code, notes, and snippets.

@nathanaelnsmith
Created December 5, 2012 20:03
Show Gist options
  • Save nathanaelnsmith/4219004 to your computer and use it in GitHub Desktop.
Save nathanaelnsmith/4219004 to your computer and use it in GitHub Desktop.
A Mixin for horizontally centering a dynamic element
// The element the mixin is applied to must be a wrapper for the dynamic element
.horz-center(){
*text-align: center;
> * {
display: table;
margin: 0px auto;
*display: inline;
*zoom: 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment