左固定右適應

左固定右適應
//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>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章