【发布时间】:2016-03-12 04:07:37
【问题描述】:
我试图阻止社交图标在到达页脚顶部时滚动。你可以看到example here。
这是一个 Wordpress 网站。布局页面是用 Visual Composer 完成的。
【问题讨论】:
-
您需要展示您尝试过的内容:您正在使用的 css 或其他代码。另外,尽量不要依赖链接来表达你的意思,因为它们本质上是不稳定的。
标签: html css wordpress footer sticky
我试图阻止社交图标在到达页脚顶部时滚动。你可以看到example here。
这是一个 Wordpress 网站。布局页面是用 Visual Composer 完成的。
【问题讨论】:
标签: html css wordpress footer sticky
在 CSS 中,您可能希望将定位更改为:
/* make social icon sticky to a position */
.myIcon {
position: fixed;
}
【讨论】: