Ways to stick footer to the bottom a page

后端 未结 3 1636
再見小時候
再見小時候 2021-01-06 16:38

I followed the How do you get the footer to stay at the bottom of a Web page? post on stackoverflow...

But i couldn\'t make it too work in an asp.net web applicatio

3条回答
  •  北海茫月
    2021-01-06 16:51

    I'm would also recommend a div structure using floating.

    Markup:

    Css:

    .bodyWrap
    {
     width: 500px;
    }
    .header, .content, .footer
    {
     width: 100%;
     float:left;
    }
    

提交回复
热议问题