0

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

这是它的样子(右上角):https ://www.cinemarvellous.com/

这是代码:

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

1 回答 1

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>
于 2019-04-16T04:55:09.827 回答