代码示例:(标识:css_align_image)
<!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:40%" />

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