<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>菜鸟教程(runoob.com)</title>
<style>
img {
max-width: 20%;
display: table;
overflow: auto;
margin: auto;
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
}
h2{
text-align:center;
}
</style>
</head>
<body>
<h2>图片居中对齐</h2>
<p>要让图片居中对齐, 可以使用 margin: auto; max-width可为100%</p>
<img src="//static.runoob.com/images/mix/paris.jpg" alt="Paris" style="width:80%">
</body>
</html>