3 Star 18 Fork 7

杨得朝/web-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
CSS实现DIV高度height全屏布局.html 1.17 KB
一键复制 编辑 原始数据 按行查看 历史
杨得朝 提交于 2020-06-17 18:48 . css联系提交
<!DOCTYPE html>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<title>三列布局</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
height: 100%;
}
html {
height: 100%;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding: 80px 0 35px 0;
overflow: hidden;
}
#header {
position: relative;
height: 80px;
margin-top: -80px;
background: #f1f1f1;
border: 1px solid #ddd;
border-width: 1px 0 1px 0;
}
#aside {
position: relative;
float: left;
width: 198px;
height: 100%;
overflow: auto;
background: #fff;
}
#main-content {
position: relative;
height: 100%;
overflow: auto;
}
#footer {
position: relative;
height: 30px;
clear: both;
background: #f1f1f1;
border: 1px solid #ddd;
}
</style>
</head>
<body>
<!-- <ul id="topbar">
<li>123</li>
<li class="pull-right">123</li>
</ul> -->
<div id="header">
header
</div>
<div id="aside">
left
</div>
<div id="main-content">
ddd
</div>
<div id="footer">
footer
</div>
</body>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yangdechao_admin/web-test.git
git@gitee.com:yangdechao_admin/web-test.git
yangdechao_admin
web-test
web-test
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385