保持在状态栏顶部的 div
the div on website below that have search at the bottom and it always remain sticked above status bar if u scroll down.
http://www.outlawdesignblog.com/
can u kindly point me to a solution
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
下面是一个独立的示例,说明了他们如何做到这一点,并在 IE7 和 FF3 中进行了测试:
Here's a self-contained example of how they do that, tested in IE7 and FF3:
如果我没记错的话 IE 不支持position:fixed。 模拟位置:固定的最简单方法也是使用动态表达式,并让表达式计算和更新绝对 y 位置等。
但是,RichieHindle 的示例适用于其他浏览器。
If i remember right IE doesnt support position:fixed. The easiest way to emulate position:fixed is too use dynamic expressions and have the expression calculate and update the absolute y position etc.
RichieHindle's example will however work for the other browsers.