特殊的三列布局-左右两列宽度固定,中间自适应
Posted
tags:
篇首语:本文由小常识网(cha138.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>
<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>
以上是关于特殊的三列布局-左右两列宽度固定,中间自适应的主要内容,如果未能解决你的问题,请参考以下文章