标签: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