定位固定标头
至少对我来说,这是一个棘手的问题。我有一个页面需要水平滚动。页面顶部是一个菜单,需要始终保持在页面中心的同一位置。即使我要使用 jQ,我也不确定如何实现这一点,因为看起来我需要以两种不同的方式定位同一个 div。
这是页面:
http://www.coflash.com/testing/raycollins/gall1。 php
由于某种原因,滚动条也没有出现,但在此站点上的旧代码中工作正常:
http:// /www.raycollinsphoto.com
有什么想法吗?
This is a tricky one, for me at least. I have a page that needs to scroll horizontally. At the top of the page is a menu that needs to stay in the same place the whole time centered on the page. Even if I were to use jQ I am unsure how to achieve this as it appears I need to position the same div two different ways.
Here is the page:
http://www.coflash.com/testing/raycollins/gall1.php
The scrollbar is not appearing for some reason either, but works fine in the old code on this site:
http://www.raycollinsphoto.com
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于滚动,在正文中添加overflow-x:scroll;这将显示水平滚动条。
关于标题,您可以使用
position:fixed;
和width:100%
和z-index:10;
所以最终的 css 为#headerwrap
将是:For the scroll add in body
overflow-x:scroll;
This will show the horizontal scroll bar.About the header you can use
position:fixed;
andwidth:100%
andz-index:10;
so the final css for#headerwrap
will be: