有没有更简单的方法来防止元素滚动到页面顶部?

发布于 2024-11-18 12:54:48 字数 198 浏览 2 评论 0原文

http://jsfiddle.net/XjqmS/

将内容标记更正为 position:relative< /code>,该元素不会停留在其位置。相反,它会滚动到图像上方。我希望页面滚动,而不是元素滚动。这可能吗?

http://jsfiddle.net/XjqmS/

After I corrected my content tag to position:relative, that element won't stay at its position. Instead, it scrolls above the image. I want the page to scroll, not the element. Is that possible?

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

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

发布评论

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

评论(1

迷荒 2024-11-25 12:54:48

我认为重做布局可以消除使用 position:fixed 的问题:D

请参阅此处:http://jsfiddle.net/SAfLK/

html

<div id="wrapper">
    <div id="header">FIXED HEADER</div>
    <div id="navigation">FIXED NAVIGATION</div>
    <div id="content">
        CONTENT GOES HERE
        <img src="http://www.dummyimage.com/200/" />
        <br />
        <img src="http://www.dummyimage.com/200/" />
        <br />
        <img src="http://www.dummyimage.com/200/" />
        <br />
        <img src="http://www.dummyimage.com/200/" />
        <br />
    </div>
</div>

css

/*adjust dimensions as necessary*/

html, body {
    height:100%;
    margin:0;
    padding:0;
}

#wrapper {
    position:relative;
    height:100%;
    width:400px;
    background-color:#efe;
    margin:0 auto; 
}

#header {
    height:50px;
    background-color:#ded;
}

#navigation, #content {
    position:absolute;
    top:50px; /*set to header's height*/
    bottom:0;
    left:0;
    right:0;
}

/* #content and #navigation's width should add up to the #wrapper's width*/

#navigation {
    width:150px;
    background-color:#cdc;
}

#content {
    overflow:auto;
    width:250px;
    left:150px; /*set to whatever navigations's width is*/
    background-color:#fef;
}

I think redoing the layout would remove the issue with using position:fixed :D

See here: http://jsfiddle.net/SAfLK/

html

<div id="wrapper">
    <div id="header">FIXED HEADER</div>
    <div id="navigation">FIXED NAVIGATION</div>
    <div id="content">
        CONTENT GOES HERE
        <img src="http://www.dummyimage.com/200/" />
        <br />
        <img src="http://www.dummyimage.com/200/" />
        <br />
        <img src="http://www.dummyimage.com/200/" />
        <br />
        <img src="http://www.dummyimage.com/200/" />
        <br />
    </div>
</div>

css

/*adjust dimensions as necessary*/

html, body {
    height:100%;
    margin:0;
    padding:0;
}

#wrapper {
    position:relative;
    height:100%;
    width:400px;
    background-color:#efe;
    margin:0 auto; 
}

#header {
    height:50px;
    background-color:#ded;
}

#navigation, #content {
    position:absolute;
    top:50px; /*set to header's height*/
    bottom:0;
    left:0;
    right:0;
}

/* #content and #navigation's width should add up to the #wrapper's width*/

#navigation {
    width:150px;
    background-color:#cdc;
}

#content {
    overflow:auto;
    width:250px;
    left:150px; /*set to whatever navigations's width is*/
    background-color:#fef;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文