缺少滚动条

发布于 2024-11-16 13:05:05 字数 190 浏览 2 评论 0原文

我似乎在此页面上缺少水平滚动条, http://www.animefushigi.com/

如果如果你让你的浏览器窗口换肤,一半的页面将被切断,但不会有滚动条。

我相信在需要滚动条之前主要内容宽度应该是 1024 px

I seem to be missing a horizontal scroll bar on this page, http://www.animefushigi.com/

If you make your browser window skinner, half the page will be cut off but there will be no scroll bar.

I believe the main content width should be 1024 px before the need of a scrollbar

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

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

发布评论

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

评论(2

黑色毁心梦 2024-11-23 13:05:05

因为wrapper div没有稳定的min-width(对于不支持min-width的浏览器,比如ie6,有一个子div。wrapper在这种情况下有一个稳定的宽度,所以也可以) ,应该设置。

例如
//添加CSS

#master_wrapper{min-width:1000px;}

because the wrapper div does not have a stable min-width(and for browser which not support min-width, such as ie6, there is a child div .wrapper has a stable width in this case, so it will be ok,too ),which should be setted.

e.g.
//add css

#master_wrapper{min-width:1000px;}
佼人 2024-11-23 13:05:05

看起来 overflow:hidden 用于清除几个地方的浮动。如果您在 #master_wrapper 上删除它,那么水平滚动条将返回。然而,这将导致该元素折叠到 0 的高度,并使其 图像从您的页面消失。不过,您可以使用其中一张的 html 重新排列背景图像来解决该问题。

It looks like overflow:hidden is used to clear floats in a couple of places. If you get rid of it on #master_wrapper then the horizontal scrollbar will return. However this will cause that element to collapse to a height of 0 and making this image disappear from your page. You can however rearrange your background images using the html for one of them to sort that issue out.

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