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

div盒子垂直水平居中

时间:2015-12-31 19:07:49      阅读:126      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>盒子垂直水平居中</title>
  <style>
    body{
      background-color: #ccc;
      margin:0;
      padding: 0;

    }
    .test{
       width: 150px;
       height: 75px;
       border: 1px solid black;

      position: absolute;
      top: 50%;
      left: 50%;
      margin-left: -75px;
      margin-top: -37.5px;
    }
  </style>
</head>
<body>
  <div class="test">
      盒子水平居中测试
  </div>
</body>
</html>

div盒子垂直水平居中

标签:

原文地址:http://www.cnblogs.com/goldWen90/p/5092437.html

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