如何从此IFRAME代码中删除滚动条?

时间:2019-04-15 17:51:08

标签: iframe scrollbar giphy

我想通过giphy在我的网站的侧边栏上嵌入gif,但是它与滚动条一起出现,我想摆脱它。你能帮忙吗?

此处(右上)的样子:https://www.cinemarvellous.com/

代码如下:

<iframe src="https://giphy.com/embed/QxH7OHwznjUMBeq2Lc" width="218" height="93" frameborder="0" class="giphy-embed"></iframe>

1 个答案:

答案 0 :(得分:0)

  

为iframe添加CSS,如下所示:

<style>
//Chrome, Safari, Opera

    .iframe ::-webkit-scrollbar { width: 0 !important }  

    //Firefox
    .iframe { overflow: -moz-scrollbars-none; }

    //Internet Explorer

    .iframe { -ms-overflow-style: none; }

</style>