Image is not centered

Please tell me what is the error, I can’t center the image, margin 0 is ignored and does not work https://codepen.io/Mister-Eighth/pen/zYJoLmw
2 Replies
Mannix
Mannix16mo ago
img is an inline level element the margin auto trick to center elements works only on block level elements so give your img {display: block;}
Eighth
Eighth16mo ago
Thank you