html学习日记:div

来源:互联网 发布:简单的单片机设计作品 编辑:程序博客网 时间:2024/05/19 01:13
<!DOCTYPE html><html><head lang="en">    <meta charset="UTF-8">    <title></title>    <style>        .header{            width: 1584px;            height: 200px;            background-color: cadetblue;        }        .nav{            width: 1584px;            height: 100px;            background-color: blanchedalmond;        }        .cont{            width: 1584px;            height: 800px;        }        .article{            width: 1000px;            height: 800px;            background-color: black;            float: left;        }        .aside{            width: 584px;            height: 800px;            float: left;            background-color: cornflowerblue;        }        .footer{            width: 1584px;            height: 200px;            background-color: cadetblue;        }        .section{            width: 900px;            height: 600px;            background-color: #fa8e26;            margin-top: 100px;            margin-left: 50px;        }    </style></head><body><div>    <div class="header"></div>    <div class="nav"></div>    <div class="cont">        <div class="article">           <div class="section"></div>        </div>        <div class="aside"></div>    </div>    <div class="footer"></div></div></body></html>