发现另外两个方法都可以呢?
第一种方法,用float让前两个DIV一边浮一个,最后一个宽度自适DIV它自己就会上去,然后给它设置个margin: 就可以了。
<!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 type="text/css">
body{ margin:0; padding:0; }
.box{width:100%; background:#000;}
.box1{width:200px; background:#0F3; float:left; }
.box2{width:200px; background:#F00; float:right;}
.box3{ background:blue; margin:0px 200px;}
</style>
</head>
<body>
<div class="box">
<div class="box1">我是box1
文字文字文字文字文字文文字文字文字文文字文
</div>
<div class="box2">我是box2
文字文字文文字文字文文字文字文文文字文字文
</div>
<div class="box3">文字文文字文字文文字文字文文字文字文文字文文字文字文字文字文文字文字文文字文字文文字文字文文字文字文文字文字文文字文字文文字文字文字文文字文字文字文
</div>
</div>
</body>
</html>
第二种和第一种差不多 把第3个DIV改为绝对定位。设置左右边距就可以了。
<!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 type="text/css">
body{ margin:0; padding:0; }
.box{width:100%; background:#000; position:relative;}
.box1{width:200px; background:#0F3; float:left; }
.box2{width:200px; background:#F00; float:right;}
.box3{ background:blue; position:absolute;left:200px;right:200px;}
</style>
</head>
<body>
<div class="box">
<div class="box1">我是box1
文字文字文字文字文字文文字文字文字文文字文
</div>
<div class="box2">我是box2
文字文字文文字文字文文字文字文文文字文字文
</div>
<div class="box3">文字文文字文字文文字文字文文字文字文文字文文字文字文dsadsad字文dasdsadas字文文字文字文文字文dasdsa字文文字文字文文字文字dasddsa文文字文字文文字文字文文字文字文字文文字文字文字文
</div>
</div>
</body>
</html>