Skip to content

Instantly share code, notes, and snippets.

@pure-rgb
Forked from innat/ImageCenter.md
Created November 24, 2018 15:51
Show Gist options
  • Save pure-rgb/9998a67ba3d8303a64fc70cf56c098f2 to your computer and use it in GitHub Desktop.
Save pure-rgb/9998a67ba3d8303a64fc70cf56c098f2 to your computer and use it in GitHub Desktop.
Center Images in GitHub README.md

For left alignment

 <img align="left" width="600" height="200" src="https://www.python.org/python-.png">

For right alignment

<img align="right" width="600" height="200" src="https://www.python.org/python-.png">

And for center alignment

<p align="center">
  <img width="600" height="200" src="https://www.python.org/python-.png">
</p>
@moeenio
Copy link

moeenio commented Oct 10, 2019

Works fine! Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment