码迷,mamicode.com
首页 > Web开发 > 详细

css块级元素居中

时间:2016-06-25 12:09:24      阅读:159      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head>
	<title>index</title>
</head>
<body>
	<div class="container">
		<div class="box"></div>
	</div>
	<style type="text/css">
		.container{
			border: 1px solid #000;
			width: 300px;
			height: 200px;
			position: absolute;
		}
		.box{
			border: 1px solid #000;
			width: 50px;
			height: 50px;

			position: absolute;
			margin: auto;
			left: 0;
			right: 0;
			top: 0;
			bottom: 0;

		}
	</style>
</body>
</html>

  

css块级元素居中

标签:

原文地址:http://www.cnblogs.com/jsplyy/p/5615967.html

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