Ways to stick footer to the bottom a page

后端 未结 3 1640
再見小時候
再見小時候 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 17:00

    I liked below better. It only works with an id and not with a class.

        
    #Footer {
                        position: fixed;
                        bottom: 0px;
            }
    

提交回复
热议问题