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>
  • 相关阅读:
    hdu 2019 数列有序!
    hdu 2023 求平均成绩
    HDU 5805 NanoApe Loves Sequence (思维题) BestCoder Round #86 1002
    51nod 1264 线段相交
    Gym 100801A Alex Origami Squares (求正方形边长)
    HDU 5512 Pagodas (gcd)
    HDU 5510 Bazinga (字符串匹配)
    UVALive 7269 Snake Carpet (构造)
    UVALive 7270 Osu! Master (阅读理解题)
    UVALive 7267 Mysterious Antiques in Sackler Museum (判断长方形)
  • 原文地址:https://www.cnblogs.com/mtxcat/p/13502457.html
Copyright © 2011-2022 走看看