我想在我的平均堆栈网页上添加Twitter的关注按钮。我使用以下代码:
https://jsbin.com/herikik/3/edit?html,output
<iframe
src="https://platform.twitter.com/widgets/follow_button.html?screen_name=Google&show_screen_name=false&show_count=false&size=l"
title="Follow us on Twitter"
width="80"
height="30"
style="border: 0; overflow: hidden;"></iframe>
在Mac下的Chrome中,效果很好。但是,在Windows下的Chrome和Edge中,它会显示:
是否有人知道如何修改代码以使其显示跨浏览器?
答案 0 :(得分:-1)
尝试将scrolling="no"
添加到<iframe>
。
<iframe
src="https://platform.twitter.com/widgets/follow_button.html?screen_name=Google&show_screen_name=false&show_count=false&size=l"
title="Follow us on Twitter"
width="80"
height="30"
style="border: 0; overflow: hidden;"
scrolling="no">
</iframe>