CSS: fixed to bottom and centered

前端 未结 9 1307
南笙
南笙 2020-11-28 04:33

I need my footer to be fixed to the bottom of the page and to center it. The contents of the footer may change at all time so I can\'t just center it via margin-left: xxpx;

9条回答
  •  萌比男神i
    2020-11-28 04:48

    revised code by Daniel Kanis:

    just change the following lines in CSS

    .problem {text-align:center}
    .enclose {position:fixed;bottom:0px;width:100%;}
    

    and in html:

    Your footer text here.

提交回复
热议问题