Ways to stick footer to the bottom a page

后端 未结 3 1641
再見小時候
再見小時候 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:48

    I suggest to use a div like

    
    

    then in your css put this

    #Footer
    {
        position: absolute;
        bottom: 0px;
        height: 3px;
        background-color: #666;
        color: #eee;
    }
    

    or you can use AjaxControlToolkit library


    I Also strongly recommand you change your layout from Table to div

提交回复
热议问题