为了账号安全,请及时绑定邮箱和手机立即绑定

发现另外两个方法都可以呢?

第一种方法,用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>


正在回答

1 回答

所以你想问什么呢..达成一个效果确实不止一种方法阿

0 回复 有任何疑惑可以回复我~
#1

温水里的小白 提问者

最近学的有点蒙圈,就想发出来验证下,是不是可行的方法-。-
2016-05-23 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消
如何用CSS进行网页布局
  • 参与学习       209624    人
  • 解答问题       1153    个

用最简洁的案例教你布局的那些知识,这是前端工程师基本技能

进入课程

发现另外两个方法都可以呢?

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信