<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0">
<title>图片居中</title>
<style>
body {
background-color: darkorange;
}
img {
margin:auto;
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
}
</style>
</head>
<body>
<img src="https://www.baidu.com/img/bd_logo1.png?where=super" alt="百度" title="百度">
</body>
</html>
图片垂直居中
最新推荐文章于 2025-05-16 14:20:02 发布