<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:40%" />
</body>
</html>