DIV+CSS,上下2个div,上面固定宽度100px,下面的如何自动延伸到浏览器低端?(如下例,黄块怎么自动延伸)

<divstyle="height:100px;background:green;width:80%;"></div><divstyle="height:50%;back... <div style="height:100px;background:green;width:80%;"></div>
<div style="height:50%;background:yellow;"></div>
展开
 我来答
我不是阿飞
推荐于2016-06-12 · TA获得超过230个赞
知道小有建树答主
回答量:204
采纳率:100%
帮助的人:211万
展开全部

方案一

<!doctype html>
<html lang="en">
<head>
   <meta charset="UTF-8" />
   <title>Document</title>
   <style>            
        html,body{height: 100%;margin:0;padding:0;}
        .box{height: 100%;padding-top: 100px;box-sizing: border-box;position: relative;}
        .green{position: absolute;top:0;left:0;}
        .yellow{height: 100%;}
   </style>
   <script src="jquery-1.11.3.min.js"></script>
</head>
<body>
    <div class="box">
        <div class="green" style="height:100px;background:green;width:80%;"></div>
        <div class="yellow" style="background:yellow;"></div>
    </div>   
</body>
</html>
方案二
<!doctype html>
<html lang="en">
<head>
   <meta charset="UTF-8" />
   <title>Document</title>
   <style>            
        html,body{margin:0;padding:0;}
        .box{height: 100vh;}
        .green{height:100px;}
        .yellow{height: calc(100vh - 100px);}
   </style>
   <script src="jquery-1.11.3.min.js"></script>
</head>
<body>
    <div class="box">
        <div class="green" style="background:green;width:80%;"></div>
        <div class="yellow" style="background:yellow;"></div>
    </div>   
</body>
</html>
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式