左固定右适应

来源:互联网 发布:淘宝客流量过大 编辑:程序博客网 时间:2024/05/16 12:10
左固定右适应
//CSS样式
html,
    body {
        margin:0;
        padding:0;
        height: 100%;
    }
    
    .container {
        height: 100%;
    }
    .left {
        height: 100%;
        width: 100px;
        float: left;
    }
    .right {
        /*width: 100%;*/
        height: 100%;
        background-color: green;
        margin-left: 100px;
    }
    .top,.bottom{
        height: 100px;
        width: 100%;
        background-color: orange;
    }
//HTML代码
<body>
<div class="top"></div>
    <div class="container">
        <div class="left"></div>
        <div class="right"></div>
    </div>
    <div class="bottom"></div>
</body>
原创粉丝点击