css实现高度自适应

2021-05-07 20:27

阅读:571

标签:屏幕   pad   适应   ack   absolute   自适应   position   padding   idt   

要求。上部固定高度50px,下部分自适应剩下整个屏幕

html, 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;
}

css实现高度自适应

标签:屏幕   pad   适应   ack   absolute   自适应   position   padding   idt   

原文地址:https://www.cnblogs.com/-constructor/p/12084263.html


评论


亲,登录后才可以留言!