码迷,mamicode.com
首页 > 其他好文 > 详细

div在浏览器居中

时间:2020-06-11 22:04:45      阅读:56      评论:0      收藏:0      [点我收藏+]

标签:title   otto   abs   top   transform   css   doctype   width   char   

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8" />
		<title></title>
		<style type="text/css">
			.way1{
				width: 100px;
				height: 100px;
				background-color: #FFB6C1;
				position: absolute;
				top: 0;left: 0;bottom: 0;right: 0;
				margin:auto auto;
			}
			.way2{
				width: 100px;
				height: 100px;
				background-color: #FFB6C1;
				position: absolute;
				top: 50%;left: 50%;//左上角顶点
				transform: translate(-50%,-50%);//向上和向左移动元素自身的50%
			}
		</style>
	</head>
	<body>
		<div class="way2">
		</div>
	</body>
</html>

div在浏览器居中

标签:title   otto   abs   top   transform   css   doctype   width   char   

原文地址:https://www.cnblogs.com/vera-7c/p/13096115.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!