zoukankan      html  css  js  c++  java
  • 两列

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <meta name="viewport" content="width=device-width, initial-scale=1.0">
        <meta http-equiv="X-UA-Compatible" content="ie=edge">
        <title>两列</title>
        <style>
            .container{
                height:   1000px;
                  1000px;
                /* display: inline-block; */
                position: relative;
                margin:   0 auto;
                border: 1px solid #fcc;
              /* text-align: center; */

            }
            .box1{
                border: 1px solid red;
                float:left;
                 30%;
                height: 100%;
            }
        
          .box2{
                border: 1px solid  blue;
                float:left;
                 60%;
                height: 100%;

            }
            .clearfix{
                clear: both;

            }
            .box3{
                border: 1px solid  green;
                float:left;
                 60%;
                height: 300px;
                border-radius:  10px;

            }
        
        </style>
    </head>
    <body>
        <div class="container">
            <div class="box1">

            </div>
            <div class="box2">

            </div>
            <div class="box3">

            </div>

        </div>
    </body>
    </html>
  • 相关阅读:
    JMX rmi的一些问题
    hdu 1022 Train Problem I
    大学的英文名及缩写
    大学的英文名及缩写
    围棋术语
    围棋术语
    走遍美洲 —— 加勒比海
    走遍美洲 —— 加勒比海
    图像处理与计算机视觉的论文创新点总结
    图像处理与计算机视觉的论文创新点总结
  • 原文地址:https://www.cnblogs.com/mtxcat/p/13502457.html
Copyright © 2011-2022 走看看