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>
  • 相关阅读:
    没有可持续集成的日子里
    Apache Avro 与 Thrift 比较
    CruiseControl.NET以及使用
    不靠谱产品经理的特征
    Hadoop 新 MapReduce 框架 Yarn 详解
    Storm On YARN
    iOS开发资源:推送通知相关开源项目--PushSharp、APNS-PHP以及Pyapns等
    Swift REPL入门介绍
    学习Swift,一定不能错过的10大开源项目!
    iOS8 Size Classes的理解与使用
  • 原文地址:https://www.cnblogs.com/mtxcat/p/13502457.html
Copyright © 2011-2022 走看看