Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/40.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css Twitter跨浏览器的Follow按钮_Css_Iframe_Twitter_Cross Browser - Fatal编程技术网

Css Twitter跨浏览器的Follow按钮

Css Twitter跨浏览器的Follow按钮,css,iframe,twitter,cross-browser,Css,Iframe,Twitter,Cross Browser,我想在我的meanstack网页上添加一个Twitter的Follow按钮。我使用以下代码: 在Mac下的Chrome中,它运行良好。但是,在Windows下的Chrome和Edge中,它显示: 有人知道如何修改代码以使其在浏览器中显示良好吗?尝试将滚动=“否”添加到中 <iframe src="https://platform.twitter.com/widgets/follow_button.html?screen_name=Google&show_screen

我想在我的meanstack网页上添加一个Twitter的Follow按钮。我使用以下代码:


在Mac下的Chrome中,它运行良好。但是,在Windows下的Chrome和Edge中,它显示:


有人知道如何修改代码以使其在浏览器中显示良好吗?

尝试将
滚动=“否”
添加到

<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>

尝试将
scrolling=“no”
添加到
中。
<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>