Skip to content

Instantly share code, notes, and snippets.

@jakecleary
Created September 25, 2014 14:00
Show Gist options
  • Save jakecleary/bbfc56fb5917a2bc6b8e to your computer and use it in GitHub Desktop.
Save jakecleary/bbfc56fb5917a2bc6b8e to your computer and use it in GitHub Desktop.
Wordpress Scss Image Styles
//
// Just the styles for aligning images, but in scss
//
img {
&.alignleft {
float:left;
margin:0 1em 1em 0;
}
&.alignright {
float: right;
margin: 0 0 1em 1em;
}
&.aligncenter {
display: block;
margin: {
left: auto;
right: auto;
};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment