固定 div 与水平滚动 css

发布于 2024-10-21 03:48:51 字数 401 浏览 5 评论 0原文

我正在做水平布局,我希望标题水平滚动..我向您展示了代码 css 的示例。

body {  
    background-color:#fff;  
}

#container {  
    margin:30px auto;  
    width:3000px;  
    height:700px;  
    border:1px dotted #ccc;  
}

#header {
    position:scroll;  
    margin:20px 20px;  
    width:200px;  
    height:70px;  
    border:1px dotted #999;  
}

谢谢

编辑:

是的..非常感谢你..问题解决了!!!

I'm doing a horizontal layout and I want the header to scroll horizontally .. I show you an example of code css.

body {  
    background-color:#fff;  
}

#container {  
    margin:30px auto;  
    width:3000px;  
    height:700px;  
    border:1px dotted #ccc;  
}

#header {
    position:scroll;  
    margin:20px 20px;  
    width:200px;  
    height:70px;  
    border:1px dotted #999;  
}

thank you

Edit:

yeah..thank you so much..problem solved!!!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

独守阴晴ぅ圆缺 2024-10-28 03:48:51

没有 position:scroll,我猜您正在寻找的是 position:fixed 作为您的标题,但请注意,这不适用于 IE6 , 尽管。

向您展示的一个小示例:http://jsbin.com/ihuma3/edit

There is no position:scroll, what I'm guessing you're looking for is position:fixed for your header, but be aware that this won't work for IE6, though.

A small sample to show you: http://jsbin.com/ihuma3/edit

世界等同你 2024-10-28 03:48:51

实际上,简单的解决方案:您只需要更改“position:scroll;”到“溢出:滚动;”。

要使其仅水平滚动,请将其更改为:“overflow-x:scroll;”。

希望有帮助!

Simple solution, really: You just need to change your "position:scroll;" to "overflow:scroll;".

To make this only scroll horizontally, change it to: "overflow-x:scroll;".

Hope that helps!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文