css position fixed not working at all

后端 未结 5 1591
暖寄归人
暖寄归人 2021-01-27 14:36

I am looking to make a footer type thing for blakehawley.com where it has some different links and such. It is supposed to be a banner style, and by that I mean it is supposed t

5条回答
  •  滥情空心
    2021-01-27 15:27

    Float is for an image inside some text, can be left or right, instead of float, you should use positioning, in your case :

    bottom:0px;
    

    also, if you want your footer to take the whole screen, use

    width:100%;
    

提交回复
热议问题