品字 布局

创建品字布局

by Boyanliuu

HTML

<!doctype html>
<html>

<head>
  <meta charset="utf-8">
  <title>品字布局</title>

</head>

<body>
  <div class="div1">1</div>
  <div class="div2">2</div>
  <div class="div3">3</div>
</body>

</html>

CSS

* {
      margin: 0;
      padding: 0;
    }
    body {
      overflow: hidden;
    }
    div {
      margin: auto 0;
      width: 100px;
      height: 100px;
      font-size: 40px;
      line-height: 100px;
      color: #fff;
      text-align: center;
    }

    .div1 {
      background: red;
      margin: 100px auto 0 auto;
    }

    .div2 {
      margin-left: 50%;
     display:inline-block;
      background: green;
/*       float: left;
      transform: translateX(-100%); */
    }

    .div3 {
      background: blue;
      display:inline-block;
/*       float: left;
      transform: translateX(-100%); */
    }