x
 
<!DOCTYPE html>
<html>
<head>
<style>
img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
</style>
</head>
<body>
<h1>居中图像</h1>
<p>如需对图像进行居中,请把左右外边距设置为 auto,并转为块元素。</p>
<img src="/i/photo/tulip.jpg" alt="Tulip" style="width:50%">
</body>
</html>