帮我写一个html居中显示图片
<!DOCTYPE html>
<html>
<head>
<title>居中显示图片</title>
<style>
.center{
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
}
img{
max-width: 100%;
max-height: 100%;
}
</style>
</head>
<body>
<div class="center">
<img src="图片路径" alt="图片">
</div>
</body>
</html>
原文地址: https://www.cveoy.top/t/topic/beNw 著作权归作者所有。请勿转载和采集!