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

footer占用了main的位置,跑到了left和right的下面

<style type="text/css">
body{ margin:0; padding:0; font-size:30px; color:#fff}
.top{width:100%;background:purple;}
.main{width=100%;background:red;position:relative;}
.left{width:200px;background:blue;position:absolute;left:0px;}
.right{position:absolute;right:0px;margin-left:10px;background:green;}
.foot{width:100%;background:orange;}
</style>

</head>

<body>
<div class="top">top</div>
<div class="main">
    <div class="right">right</div>
    <div class="left">left</div>
</div>
<div class="foot">foot</div>

</body>

结果是这样子的

http://img1.sycdn.imooc.com//561e5f600001a44008940138.jpg

正在回答

2 回答

你的left和right没有设置高度,然后这里和上一节中不大一样,上一节中使用的是浮动排版,解决footer显示的方法有1、给main设置和left/right相同的高度;2、给main设置属性overflow=hidden;3、给footer设置属性clear:both;在这一节这里我们使用的是定位排版,所以只能采取给main设置和left/right相同的高度的方法解决footer显示问题

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

你想实现什么?

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

cc_0501 提问者

橙色要放在left和right的下面一行
2015-10-15 回复 有任何疑惑可以回复我~
#2

丶YangBin 回复 cc_0501 提问者

绝对定位
2015-10-23 回复 有任何疑惑可以回复我~

举报

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

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

进入课程

footer占用了main的位置,跑到了left和right的下面

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