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

HTML + CSS 布局实现全屏布局

程序员文章站 2022-06-15 18:18:18
{ margin: 0; padding: 0; } .contriner { width: 100%; height: 100%; background: red; position: relative; } .topBar { position: relative; width: 100%; h ......

    * {
        margin: 0;
        padding: 0;
    }
    
    .contriner {
        width: 100%;
        height: 100%;
        background: red;
        position: relative;
    }
    
    .topbar {
        position: relative;
        width: 100%;
        height: 80px;
        background: blue;
        z-index: 2;
    }
    
    .asids {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 160px;
        padding-top: 80px;
        background: gold;
        z-index: 1;
    }
    
    .view {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin-top: 85px;
        margin-left: 165px;
        margin-right: 20px;
        margin-bottom: 20px;
        background: green;
        overflow-y: auto;
    }
    
    .content {
        width: 100%;
        height: 1000px;
        background: #fff;
    }


<div class="contriner">
    <div class="topbar">
        头部
    </div>
    <div class="asids">
        侧边栏
    </div>
    <div class="view">
        <div class="content"></div>
    </div>
</div>