我有这个网站:

http://dl.dg-site.com/functionmentes/

有一个颜色为#D9D9D9的div

代码CSS:

#full_bar{background:#D9D9D9;width:100%;height:100px;}


我希望我的div是全角网站,并粘贴到页脚。

我该怎么做?

我在Wordpress中使用主题。

提前致谢!

最佳答案

通过固定位置,这将确保它在用户上下滚动您的网站时跟随用户。

#full_bar {
    background: #d9d9d9;
    width: 100%;
    height: 100px;
    position: fixed;
    bottom: 0;
    left: 0;
}

08-25 16:24