SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html>
    <style type="text/css">
        .outer {
            width: 800px;
            background: black;
            overflow: hidden;
        }
        .inner {
            float: left;
            background: red;
        }
        .sub1 {
            width: 26%;
            background: blue;
        }
        .sub2 {
            width: 50%;
            background: green;
        }
    </style>
<head>
</head>
<body>
    <div class="outer">
        <div class="inner">
            <div class="sub1">
                this is 1th line this is 2th line this is 3th line this is 4th line
            </div>
            <div class="sub2">
                sub2 block
            </div>

        </div>
    </div>
</body>
</html>