Java教程

两端等高布局

本文主要是介绍两端等高布局,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

示例

在这里插入图片描述

实现

<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="UTF-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0" />
    <title>Document</title>
    <style>
      * {
        margin: 0px;
        padding: 0;
        box-sizing: border-box;
      }
      .container {
        width: 100vw;
        height: 100vh;
        background-color: #f5f5f5;
      }

      .box {
        display: flex;
      }

      .left {
        background-color: #fff;
        width: 400px;
        padding: 300px 0;
      }
      .right {
        margin-left: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
      }

      .top {
        padding: 30px 0;
        margin-bottom: 20px;
        background-color: #fff;
      }
      .bottom {
        flex: 1;
        padding: 100px 0;
        background-color: #fff;
      }
    </style>
  </head>

  <body>
    <div class="container">
      <div class="box">
        <div class="left">left</div>

        <div class="right">
          <div class="top">top</div>
          <div class="bottom">bottom</div>
        </div>
      </div>
    </div>
  </body>
</html>
这篇关于两端等高布局的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!