Skip to content

Instantly share code, notes, and snippets.

@joeldrapper
Last active August 29, 2015 14:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save joeldrapper/f1cce9866154489caf63 to your computer and use it in GitHub Desktop.
Save joeldrapper/f1cce9866154489caf63 to your computer and use it in GitHub Desktop.
Markdown Image Alignment
img {
margin-top: 20px;
margin-bottom:20px;
}
img[src*='#left'] {
float: left;
margin-right: 20px;
}
img[src*='#right'] {
float: right;
margin-left: 20px;
}
img[src*='#outset'] {
width: 130%;
margin-left: -15%;
margin-right: -15%;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment