How to make a page with header and left-sidebar?

后端 未结 6 914
醉话见心
醉话见心 2020-12-29 06:41

I\'d like to make a webpage like this:

|----------------------------|
|            header          |
|----------------------------|
|  L  |                           


        
6条回答
  •  温柔的废话
    2020-12-29 07:41

    example at jsFiddle

    .top {
        position:absolute;
        left:0; right:0;
        height: 92px;
    }
    .left {
        position:absolute;
        left:0; top:92px; bottom: 0;
        width: 178px;
    }
    .main {
        position: absolute;
        left:178px; top:92px; right:0; bottom:0;
    }
    

提交回复
热议问题