我不知道为什么在ie7
中为此网站显示水平滚动。
这适用于所有其他浏览器。
无法确定为什么会发生这种情况。
请帮我解决这个问题。
提前致谢
http://d9692994.u118.c6.ixwebhosting.com/vishal-enterprise/website/
答案 0 :(得分:2)
你缺少jquery库。检查你的控制台错误。你需要在所有js文件之前调用jquery库。
在你的css中试试这个:
html{
overflow-x: hidden;
}
body{
overflow-y: scroll;
overflow-x: hidden;
}
答案 1 :(得分:0)
如何为body
添加一些风格?
body {
overflow-x: hidden;
}
我还没有测试过,但这应该可行。