SOURCE

console 命令行工具 X clear

                    
>
console
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>盒子</title>
    <style type="text/css">
        body {
            margin: 0;
            padding: 0;
    }

    #box1 {
        background-color: #999;
        margin: 50px;
        padding: 50px 50px 50px 50px;
        width: 300px;
        height: 200px;
        border: 15px;
    }

    #text{
        background-color: #ccc;
        text-indent: 2em;
        font-style: 30px;
    }
    </style>
</head>
<body> 
    <div id="box1">
    <div id="text">
        <p>WER标准不是某个一个标准,而是一系列标准的集合。网页主要由
            三部曲组成:构成(Structure),表现(Presentation)和行为(Behavior)。</p>
        <p> 内容和形式分离,网页前台只需要显示内容就行,形式上的美工
            交给CSS来处理。</p>
    </div>
</div>
</body>
</html>