缺少滚动条
我似乎在此页面上缺少水平滚动条, 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
因为wrapper div没有稳定的min-width(对于不支持min-width的浏览器,比如ie6,有一个子div。wrapper在这种情况下有一个稳定的宽度,所以也可以) ,应该设置。
例如
//添加CSS
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
看起来
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 of0
and making this image disappear from your page. You can however rearrange your background images using thehtml
for one of them to sort that issue out.