CSS-佈局5-Calc三列布局

java小工匠發表於2017-08-13

1、實現效果

  Calc實現三列布局,中間自適應,左右固定寬度。

2、實現思路

  中間寬度 計算出來 : calc(100% – 左邊寬度+右邊寬度)

3、原始碼

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Calc三列布局</title>
    <style type="text/css">
    body{
        margin: 0px;
    }
    .center{
        float: left;
        width: calc(100% - 400px);
        background: #ccc;
        height: 200px;
    }
    .left{
        float: left;
        width: 200px;
        height: 200px;
        background: red;
    }
    .right{
        float: left;
        width: 200px;
        height: 200px;
        background: blue;
    }
    </style>
</head>
<body> 
    <div class="left">left 200px </div>
    <div class="center">center=calc(100%-400px)</div>
    <div class="right">right 200px</div>
</body>
</html>


相關文章