Created
September 25, 2014 14:00
-
-
Save jakecleary/bbfc56fb5917a2bc6b8e to your computer and use it in GitHub Desktop.
Wordpress Scss Image Styles
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// 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