我想通过giphy在我的网站的侧边栏上嵌入gif,但是它与滚动条一起出现,我想摆脱它。你能帮忙吗?
此处(右上)的样子:https://www.cinemarvellous.com/
代码如下:
<iframe src="https://giphy.com/embed/QxH7OHwznjUMBeq2Lc" width="218" height="93" frameborder="0" class="giphy-embed"></iframe>
答案 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>