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

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


        
5条回答
  •  甜味超标
    2020-12-04 22:34

    Here is how to to that:

    The header and footer are 30px height.

    The footer is stuck to the bottom of the page.

    HTML:

    
    

    CSS:

    #header {
        height: 30px;
    }
    #footer {
        height: 30px;
        position: absolute;
        bottom: 0;
    }
    body {
        height: 100%;
        margin-bottom: 30px;
    }
    

    Try it on jsfiddle: http://jsfiddle.net/Usbuw/

提交回复
热议问题