简体   繁体   中英

Margin top responsive footer

I wants to move all the way down #footer

If you use the "top margin: X value" footer down but the resolution of the laptop ... scroll bar appears on the right

This is css code:

    #footer
{ 
  text-align: center;
  border:0px solid #fff;
  width: 100%;
  background:url(img/BODY-MENU.png);
 margin:0px;
bottom:0px;
}

What should I use for the footer to be responsive?

This is the link:

http://test.dac-proiect.ro/wp/

You could add this to it:

position: fixed;
bottom: 0;

This will fix it to the bottom of the window, so no matter your screen size it will be at the bottom.

要将页脚放在底部,您应该给页脚一个固定或绝对的位置。

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM