欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

div自适应高度

程序员文章站 2022-05-01 08:09:14
...

页面中,有两个div,div分别需要自适应浏览器高度。

代码如下,是使用了css3的自适应属性来实现的.

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>demo</title>
    <style>
       html,body{margin:0;padding:0;}
        .main{height: 100vh;overflow-y:hidden;}
        .content{height: calc(100vh - 55px);}
        .action{height:55px;}
    </style>

</head>
<body>
<div class="main">
        <div id="content" class="content" style="overflow-y: scroll; background: #333; color: #aaa; padding: 10px;">
        	<div></div>
        	</div>
        <div class="action" style="width:100%;margin-top:5px;"  align="center">
		      <input id="clear" type="button" value="Clear" />
        </div>
    </div> 
</body>
</html>