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

元素垂直居中

时间:2014-11-12 13:12:05      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   div   on   

<!DOCTYPE html>
<html>
<!-------元素垂直居中-------->
	<head>
		<meta charset="utf-8">
		<title></title>
		<style type="text/css">
			.big {
				width: 500px;
				height: 500px;
				border: 1px solid red;
				position: relative;
			}
			.small {
				width: 200px;
				/*自己元素宽高可任意设定 */
				
				height: 300px;
				position: absolute;
				left: 0px;
				top: 0px;
				right: 0px;
				bottom: 0px;
				margin: auto;
				background-color: #cc9900;
			}
		</style>
	</head>

	<body>
			<body>
    <div class="big">
      <div class="small"></div>
     </div>
  </body>
	</body>

</html>
bubuko.com,布布扣

  

元素垂直居中

标签:style   blog   http   io   color   ar   os   div   on   

原文地址:http://www.cnblogs.com/wuqiong/p/4091730.html

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