Created
June 30, 2016 05:20
-
-
Save tokopress/d5368a274eaa6577e63d5400cd3477c4 to your computer and use it in GitHub Desktop.
Eventica - Fix Image Alignment Issue
This file contains hidden or 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
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