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

定位的居中

时间:2020-07-09 17:50:07      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:transform   round   width   top   pos   meta   orm   auto   abs   

position定位的上下左右居中

<!DOCTYPE html>
<html>
	<head>
		<meta charset="utf-8">
		<title></title>
	</head>
	<body>
		<div class="yi">
			<div class="er"></div>
		</div>
	</body>
</html>
<style>
	.yi{
		height:500px;
		width:500px;
		background:pink;
		margin:30px auto;
		position: relative;
	}
	.er{
		height:200px;
		width:200px;
		background: #008000;
		position: absolute;
		top:50%;
		left:50%;
		transform: translate(-50%, -50%);
	}
</style>

  

定位的居中

标签:transform   round   width   top   pos   meta   orm   auto   abs   

原文地址:https://www.cnblogs.com/xiaoyaolang/p/13275023.html

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