定位固定标头

发布于 2024-10-13 20:38:55 字数 429 浏览 5 评论 0原文

至少对我来说,这是一个棘手的问题。我有一个页面需要水平滚动。页面顶部是一个菜单,需要始终保持在页面中心的同一位置。即使我要使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

谁许谁一生繁华 2024-10-20 20:38:55

对于滚动,在正文中添加overflow-x:scroll;这将显示水平滚动条。

关于标题,您可以使用 position:fixed;width:100%z-index:10; 所以最终的 css 为 #headerwrap 将是:

#headwrap {
    background-color: #1C1C1C;
    position: fixed;
    width: 100%; /* to take the width of all screen */
    z-index: 10; /* In small screens the images override the header */
}

For the scroll add in body overflow-x:scroll; This will show the horizontal scroll bar.

About the header you can use position:fixed; and width:100% and z-index:10; so the final css for #headerwrap will be:

#headwrap {
    background-color: #1C1C1C;
    position: fixed;
    width: 100%; /* to take the width of all screen */
    z-index: 10; /* In small screens the images override the header */
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文