How to center an image

2026-07-20

To center an image with CSS you can make a CSS class

.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

and then use the class like this

<img class="centered" src="/x/x/x.jpg">

Hey, you! Still reading? This is but for my poor, forgetful self.