Mobile Safari(iOS 7)忽略溢出值

时间:2014-01-25 20:14:13

标签: html ios css iphone overflow

关于这个问题,我已经关注了这里的所有问题,但我仍然陷入困境。

我的网页上有很多absolute position个ed元素,我想要overflow-x: hidden,因为我有一个滑出的移动菜单。 (如果点击菜单图标,然后向左滑动手指,则菜单消失,但剩余的大空白区域因为向左滚动而停留)。我尝试过:

html {
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
}

/* I know this is repetitive, but the above two aren't working, so I'm trying this as well */

html, body {
    overflow-x: hidden !important;
}

html body {
    overflow-x: hidden !important;
}

我也尝试使用overflow-y,以防它出现奇怪的方向问题,但仍然不起作用(事实上,仍然也向下滚动/向上)。我也尝试了overflow: hidden !important; overflow-y: auto;但是再次尝试不起作用。就好像它完全忽略了overflow规则。我知道样式表很好,因为它正在从该样式表中读取其他规则。有任何想法吗?如果您想查看它:http://www.lampsidewebdesign.com/

0 个答案:

没有答案