W3School TIY Editor
W3School 在线教程
改变方向
暗黑模式
运行代码
<!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>