首页 > 其他 > 详细

错误页如何在页面居中

时间:2017-07-17 19:34:09      阅读:279      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
		<style type="text/css">
			*{margin: 0;padding: 0;}   //清除格式,不然会出现滚动条
			.wall{
				width: 100%;
				height:100%;
				position: absolute;
				display: flex;
				justify-content: center;
				align-items: center;
				background: #000000;
			}
		</style>
	</head>
	<body>
		<div class="wall" >
			<a href="#"><img src="img/404.jpg"/></a>
		</div>
	</body>
</html>

 技术分享

错误页如何在页面居中

原文:http://www.cnblogs.com/run666/p/7196920.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!