左側固定中間自適應

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Title</title>    <style>        *{            margin: 0;            padding: 0;        }        .outer{            width:100%;         }        .left{            float: left;            width:200px;            height: 500px;            font-weight:bold;">orange;        }        .main{            float: left;            width:calc(100% - 200px);            height: 500px;            font-weight:bold;">yellowgreen;        }    </style></head><body><div class="outer">    <div class="left">左側</div>    <div class="main">中間</div></div></body></html>
相關文章
相關標籤/搜索