Learn how to center an image with CSS.
Centered image:
<img src="paris.jpg" alt="Paris" class="center">
To center an image, set left and right margin to auto
and make it into a block
element:
.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 50%;
}
Try it Yourself »
Note that it cannot be centered if the width is set to 100% (full-width).
Tip: Go to our CSS Images Tutorial to learn more about how to style images.
截取页面反馈部分,让我们更快修复内容!也可以直接跳过填写反馈内容!