div盒子垂直水平居中

div盒子,水平垂直居中。

<!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盒子垂直水平居中)