当调用 jquery 切换方法时,IE 8 不会将页脚向下推
刚刚接触jquery。
此问题仅出现在 IE 8 中,在 IE 7、IE 8 兼容模式、Chrome 和 FF 中没有问题。
单击“美甲增强”按钮后,内容会在页脚顶部弹出。
请问有人有什么想法吗?这是页面。 http://deansmith.me.uk/tropicalwizarddev/pricelist.aspx
谢谢
院长
Just getting into jquery.
This problem only occurs in IE 8, its fine in IE 7, IE 8 Compat mode, Chrome and FF.
When the nail enhancements button is clicked the content bombs over the top of the footer.
Does any body have any ideas please? here's the page. http://deansmith.me.uk/acrylicwizarddev/pricelist.aspx
thanks
Dean
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在
#page
上,不要使用display: inline-block
,而是使用overflow: hide
。它将清除float
并修复错误。On
#page
, instead of usingdisplay: inline-block
, useoverflow: hidden
. It will clear thefloat
s and fix the bug.