CSS+DIV,左右2个DIV,左边固定宽度,右边如何自动延伸?(如下例,左边必须是固宽,黄块如何自动延伸)

<divstyle="width:100%;height:50px;background:red;"></div><divstyle="float:left;width:... <div style="width:100%;height:50px;background:red;"></div>
<div style="float:left;width:200px;height:500px;background:blue;"></div>
<div style="float:left;width:700px;height:500px;background:yellow;"></div>
展开
 我来答
程豆豆5A
推荐于2016-07-31 · 知道合伙人互联网行家
程豆豆5A
知道合伙人互联网行家
采纳数:153 获赞数:524
从事web前端俞6年,经验丰富,喜欢帮助别人,同时也在提高自己

向TA提问 私信TA
展开全部

左边固定,右边自适应:

<div style="height:300px;background:green">
    <div style="width:200px; height:300px; float:left; background:red">aside</div>
    <div style=" margin-left:200px">content</div>
</div>

左边固定,右边自适应(圣杯布局的实现):

<style type="text/css">
body{margin:0;padding:0}
.wrap{ width:100%; float:left}
.content{ height:300px;background:green; margin-left:200px}
.right{ width:200px; height:300px; background:red; float:left; margin-left:-100%}
</style>
<div class="wrap">
<div class="content">content</div>
</div>
<div class="right">aside</div>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式