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

盒子居中

时间:2018-07-02 22:57:42      阅读:200      评论:0      收藏:0      [点我收藏+]

标签:transform   class   osi   form   document   har   style   abs   back   

1、标准流下元素居中

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    .box {
      width: 100px;
      height: 100px;
      background-color: lightgreen;
      margin: 100px auto;
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>

2、position实现盒子居中

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    body {
      position: relative;
    }
    .box {
      width: 100px;
      height: 100px;
      background-color: lightgreen;
      position: absolute;
      top: 100px;
      /* 移动了父元素宽度的一半* */
      left: 50%;
      /* 移动了当前元素自己宽度一半 */
      margin-left: -50px;
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>

3、通过位移的方式实现绝对定位的盒子居中

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    body {
      position: relative;
    }
    .box {
      width: 100px;
      height: 100px;
      background-color: lightgreen;
      position: absolute;
      left: 50%;
      top: 100px;
      transform: translate(-50%,0);
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>

4、通过3D方式实现盒子居中

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <style>
    body {
      position: relative;
    }
    .box {
      width: 100px;
      height: 100px;
      background-color: lightgreen;
      position: absolute;
      left: 50%;
      transform: translateX(-50%) translateY(100px);
    }
  </style>
</head>
<body>
  <div class="box"></div>
</body>
</html>

盒子居中

标签:transform   class   osi   form   document   har   style   abs   back   

原文地址:https://www.cnblogs.com/houfee/p/9251682.html

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