代码示例:(标识:css_ex_images_center)
<!DOCTYPE html>
<html>
<head>
<style>
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
</style>
</head>
<body>

<h1>居中图像</h1>

<p>如需对图像进行居中,请把左右外边距设置为 auto,并转为块元素。</p>

<img src="/static/demo/images/tulip.jpg" alt="Tulip" style="width:50%">

</body>
</html>
运行结果: