在Firefox中无法摆脱iframe上的固定水平滚动

时间:2011-11-15 23:15:15

标签: html css iframe widget horizontal-scrolling

为我的网站创建窗口小部件。请查看http://bit.ly/w42SC4

在Chrome和IE中看起来不错。但是,我在Firefox中获得了这个丑陋的固定水平滚动。我不知道如何摆脱它。感谢帮助!

1 个答案:

答案 0 :(得分:2)

你可以尝试:

<iframe src="http://www.coupongravy.com/vipiframe.php"
scrolling="yes"
width="300" height="250" frameborder="0" noresize="" marginheight="0" marginwidth="0" hspace="0"
vspace="0" style="overflow-x: hidden; border:1px solid #ef6ea8;width:300px;height:250px;"></iframe>

我在你的风格中添加了overflow-x: hidden

在Firefox 8.0上测试。