码迷,mamicode.com
首页 > 其他好文 > 详细

特殊的三列布局-左右两列宽度固定,中间自适应

时间:2017-08-02 17:42:07      阅读:115      评论:0      收藏:0      [点我收藏+]

标签:red   utf-8   一个   tran   ack   固定   pos   char   htm   

<!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>
<style>
body{
padding: 0px;
margin: 0px;
}
.left{width:200px;height:500px;position:absolute;left: 0;top: 0;background:blue;}
.middle{height:500px; margin:0 300px 0 200px;background:green }
.right{
width:300px;height: 500px;position:absolute;right: 0;top:0;background: red;
}
</style>
</head>
<body>
<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>
</body>
</html>

注意两处标红:1、第一处没有会出现中文乱码(好吧,我承认第一次写没常识);

       2、第二处没有会出现中间的一个div顶部有空白(看了很久才发现);

貌似用float没办法实现以上这种效果,不过float可以实现下面这种宽度都以百分比形式的:

<!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>
<style>
body{
padding: 0px;
margin: 0px;
}
.left{width:20%;height:500px;float:left;background:blue;}
.middle{width:40%;height:500px; float:left;background:green }
.right{
width:40%;height: 500px;float:right;background: red;
}
</style>
</head>
<body>
<div class="left"></div>
<div class="middle"></div>
<div class="right"></div>
</body>
</html>

特殊的三列布局-左右两列宽度固定,中间自适应

标签:red   utf-8   一个   tran   ack   固定   pos   char   htm   

原文地址:http://www.cnblogs.com/LynnMin/p/7274964.html

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