内容不足footer位于页面底部-字节跳动笔试题
内容不足footer位于页面底部
字节跳动前端面试题,大意如下:
1.页面有三个模块,heaer,content,footer
2.当页面内容超出浏览器窗口时不显示
2.当content不足以填充页面时footer出现在页面底部
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>cors</title>
</head>
<style>
*{
margin:0;
padding:0;
}
html,body{
width:100%;
height:100%;
overflow: hidden;
}
.header{
width:100%;
background-color:rgb(34, 156, 116);
}
.container{
width:100%;
min-height:100%;
position: relative;
}
.content{
width:100%;
background-color:rgb(124, 238, 238);
}
.footer{
width:100%;
position: absolute;
bottom:0;
background-color:rgb(194, 194, 54);
}
</style>
<body>
<div class="container">
<header class="header">header</header>
<div class="content">content</div>
<footer class="footer">footer</footer>
</div>
</body>
</html>
内容区高度不足内容区高度足够