码迷,mamicode.com
首页 > Web开发 > 详细

html笔记 横向两列布局

时间:2016-11-19 23:15:17      阅读:265      评论:0      收藏:0      [点我收藏+]

标签:nbsp   oat   utf-8   title   影响   hid   overflow   clear   .com   

技术分享

 

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<style type="text/css">
*{margin:0;padding:0;}
#wrap{width:960px;margin:0 auto;background:#00C;}

#header{background:#FF3300;width:100%;}
#mainbody{background:#FC0;width:100%;overflow:hidden;

}
.left{width:820px;height:400px;background:#36C;float:left;margin-right:20px;}
.right{width:120px;height:600px;background:#0F3;float:right;}
#footer{background:#60C;clear:
both;}
</style>
<body>
<div id="wrap">
<div id="header">头部</div>
<div id="mainbody">
<div class="left">left</div>
<div class="right">right</div>

</div>
<div id="footer"> 脚注</div>
</div>

</body>
</html>

浮动会动mainbody和footer影响,分别采取
1.width:100%;overflow:hidden;
2.clear:both;

html笔记 横向两列布局

标签:nbsp   oat   utf-8   title   影响   hid   overflow   clear   .com   

原文地址:http://www.cnblogs.com/yi-mi-yangguang/p/6081649.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!