css实现高度自适应
2021-05-07 20:27
标签:屏幕 pad 适应 ack absolute 自适应 position padding idt 要求。上部固定高度50px,下部分自适应剩下整个屏幕 css实现高度自适应 标签:屏幕 pad 适应 ack absolute 自适应 position padding idt 原文地址:https://www.cnblogs.com/-constructor/p/12084263.htmlhtml, body {
height: 100%;
margin: 0px;
padding: 0px;
}
#main {
background-color: #999;
height: 100%;
}
#nav {
background-color: #85d989;
width: 100%;
height: 50px;
}
#content {
background-color: #cc85d9;
width: 100%;
position: absolute;
top: 50px;
bottom: 0px;
left: 0px;
}