在 iframe 上隐藏水平滚动条? [英] Hide horizontal scrollbar on an iframe?

查看:21
本文介绍了在 iframe 上隐藏水平滚动条?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要使用 css、jquery 或 js 在 iframe 上隐藏水平 scollbar.

I need to hide the horizontal scollbar on an iframe using css, jquery or js.

推荐答案

我建议结合使用

  1. CSS overflow-y: hidden;
  2. scrolling="no" (用于 HTML4)
  3. seamless="seamless"(用于 HTML5)*

* seamless 属性已被删除 来自标准,并且没有浏览器支持它.

* The seamless attribute has been removed from the standard, and no browsers support it.

.foo {
  width: 200px;
  height: 200px;
  overflow-y: hidden;
}

<iframe src="https://bing.com" 
        class="foo" 
        scrolling="no" >
</iframe>

这篇关于在 iframe 上隐藏水平滚动条?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆