如何隐藏滚动条(溢出:隐藏)?
我有可滚动页面,其中包含打开厚盒的链接。
(参见示例landme.ru/scroll-bug/)
我想在打开thickbox时隐藏垂直滚动并停留在页面底部。 将“overflow:hidden”属性应用于“body”标签不会 在ie7下工作。如果我将此属性用于“html”标记,则页面内容为 在滚动之前向上滚动将被隐藏
抱歉我的英语
UPD:同时我使用这样的代码:
css:.noscroll{overflow:hidden;}
js:
if ( ($.browser.msie) && ($.browser.version == '7.0')) {
$('html').addClass('noscroll');
} else {
$('body').addClass('noscroll');
}
它有效,但我仍然想知道是否还有其他方法
I have scrollable page with link which opens thickbox.
(see example landme.ru/scroll-bug/)
I want to hide vertical scroll when thickbox is opened and stay on the bottom of the page.
Applying 'overflow:hidden' property to 'body' tag does not
work in ie7. If I use this property for 'html' tag, the page content is
scrolled up before scroll will be hidden
sorry for my english
UPD: Meanwhile I use such code:
css:.noscroll{overflow:hidden;}
js:
if ( ($.browser.msie) && ($.browser.version == '7.0')) {
$('html').addClass('noscroll');
} else {
$('body').addClass('noscroll');
}
It works, but I still want to know, if there are any other methods
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,问题出在高度上。您不能只指定隐藏在换行上的溢出,因为它不知道在哪里停止。将“wrap”包裹在div中,样式属性为position:relative;高度:100%;然后给换行样式为overflow:hidden;高度:100%;位置:绝对;
最后,您需要滚动它,使其位于底部。
就这样了:)
测试用例在这里:
http://jsbin.com/eguhuj#html
有一点滚动条,但那是因为jsbin 的。在一个 html 文档中它看起来很完美。
编辑:更新的代码...我们可以先测试一下它是否有效...您可以将其放入锚元素中吗?
ok so the problem is with the height. You can't just specify overflow hidden on the wrap because it has no idea where to stop. Wrap the "wrap" in a div with the style attributes of position:relative; height:100%; then give the wrap the style of overflow: hidden; height: 100%; position: absolute;
lastly you need to scroll it so it's at the bottom.
and there you have it :)
test case here:
http://jsbin.com/eguhuj#html
there is a tiny bit of scroll bar, but that's because of jsbin. in just an html document it looks perfect.
EDIT: updateed code... can we test this to see if it works first... can you put this in your anchor element?