How to make this Header/Content/Footer layout using CSS?

后端 未结 5 997
长情又很酷
长情又很酷 2020-12-04 22:09
 ______________________
|        Header        |
|______________________|
|                      |
|                      |
|        Content       |
|                        


        
5条回答
  •  暖寄归人
    2020-12-04 22:34

    Try this

    CSS

    .header{
        height:30px;
    }
    .Content{
        height: 100%; 
        overflow: auto;
        padding-top: 10px;
        padding-bottom: 40px;
    }
    .Footer{
        position: relative;
        margin-top: -30px; /* negative value of footer height */
        height: 30px;
        clear:both;
    }
    

    HTML

      
        
    Header
    Content

提交回复
热议问题