zoukankan      html  css  js  c++  java
  • UED双飞翼布局

        <style>
            body,html {
                height:100%;
                padding: 0;
                margin: 0
            }
            
            .main {
                background: #f2f2f2;
                 100%;
                float: left;
                height: 100%;
            }
            .left {
                background: gray;
                 100px;
                float: left;
                margin-left: -100%;
                height: 100%;
                overflow: hidden;
            }
            .right {
                background: #fff;
                 100px;
                float: left;
                margin-left: -100px;
                height: 100%;
                overflow: hidden;
            }
            .inner {
                margin-left: 100px;
                margin-right: 100px;
            }
        </style>
      </head>
      <body>
              <div class="main">
                <div class="inner">
                    Main
                </div>
            </div>
            <div class="left">Left</div>
            <div class="right">Right</div>
      </body>
    /**
     *                    _ooOoo_
     *                   o8888888o
     *                   88" . "88
     *                   (| -_- |)
     *                    O = /O
     *                ____/`---'\____
     *              .   ' \| |// `.
     *               / \||| : |||// 
     *             / _||||| -:- |||||- 
     *               | | \ - /// | |
     *             | \_| ''---/'' | |
     *               .-\__ `-` ___/-. /
     *           ___`. .' /--.-- `. . __
     *        ."" '< `.___\_<|>_/___.' >'"".
     *       | | : `- \`.;` _ /`;.`/ - ` : | |
     *           `-. \_ __ /__ _/ .-` / /
     * ======`-.____`-.___\_____/___.-`____.-'======
     *                    `=---='
     *
     * .............................................
     *          佛祖保佑             永无BUG
     */
    

     

  • 相关阅读:
    Nancy 寄宿IIS
    原子操作
    CSRF跨站请求伪造
    CORS跨域
    C# 运算符
    Mysql 函数
    Mongodb for .Net Core 驱动的应用
    Mongodb for .Net Core 封装类库
    制作项目模板
    压缩图片
  • 原文地址:https://www.cnblogs.com/dupd/p/6149237.html
Copyright © 2011-2022 走看看