`

div布局

阅读更多


<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>布局</title>
<style type="text/css">
   body{
         margin:0px;
   }
   div#container{
     width:100%;
     height:950px;
     background-color:darkgray;
   }
   div#heading{
     width:100%;
     height:10%;
     background-color:aqua;
   }
   div#content_menu{
     width:30%;
     height:80%;
     background-color:red;
   float:left; 
   }
    div#content_body{
     width:70%;
     height:80%;
     background-color:blue;
            float:left; 
   }
   div#footing{
     width:100%;
     height:10%;
     background-color:black;
     clear:both;
   }
</style>
</head>
<body>
<div id="container">
     <div id="heading">头部</div>
     <div id="content_menu">菜单</div>
     <div id="content_body">正文</div>
     <div id="footing">底部</div>
</div>
</body>
</html>

 
 

  • 大小: 1.8 KB
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics