Skip to content

Instantly share code, notes, and snippets.

@jasonkmccoy
Created March 14, 2015 21:09
Show Gist options
  • Save jasonkmccoy/924d53459c14da62ec3d to your computer and use it in GitHub Desktop.
Save jasonkmccoy/924d53459c14da62ec3d to your computer and use it in GitHub Desktop.
xPos mixin: This mixin provides a shorthand for positioning an element along the x axis
@mixin xPos($x) {
-webkit-transform:translateX($x);
-moz-transform:translateX($x);
-ms-transform:translateX($x);
transform:translateX($x);
}
/* Usage */
div {
@include xPos(50px);
}
@jasonkmccoy
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment