Skip to content

Instantly share code, notes, and snippets.

@tokopress
Created June 30, 2016 05:20
Show Gist options
  • Save tokopress/d5368a274eaa6577e63d5400cd3477c4 to your computer and use it in GitHub Desktop.
Save tokopress/d5368a274eaa6577e63d5400cd3477c4 to your computer and use it in GitHub Desktop.
Eventica - Fix Image Alignment Issue
img.alignleft {
display: inline;
float: left;
margin-right: 1.5em;
}
img.alignright {
display: inline;
float: right;
margin-left: 1.5em;
}
img.aligncenter {
display: block;
clear: both;
margin: 0 auto;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment