how to put an image in the center - hogehoge666/syno_moments_slider GitHub Wiki

img tag is an inline tag. There are two ways to center an inline tag.

  1. surround it with a div and apply "text-align: center" to the div tag
  2. convert the img into a block tag and set "margin: auto".

Method 1

CSS

.centerClass {
  text-align: center;
}

HTML

<div class="centerClass">
  <img src="img03.jpg">
</div>

Method 2

CSS

.centerClass {
  display: block;
  margin: auto;
}

HTML

<img class="centerClass" src="img03.jpg">
⚠️ **GitHub.com Fallback** ⚠️