【发布时间】:2011-11-15 23:15:14
【问题描述】:
为我的网站创建一个小部件。查看http://bit.ly/w42SC4。
在 Chrome 和 IE 中看起来不错。但是,我在 Firefox 中得到了这个丑陋的固定水平滚动。我不知道如何摆脱它。感谢您的帮助!
【问题讨论】:
标签: html css iframe widget horizontal-scrolling
为我的网站创建一个小部件。查看http://bit.ly/w42SC4。
在 Chrome 和 IE 中看起来不错。但是,我在 Firefox 中得到了这个丑陋的固定水平滚动。我不知道如何摆脱它。感谢您的帮助!
【问题讨论】:
标签: html css iframe widget horizontal-scrolling
你可以试试:
<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 上测试。
【讨论】: