本文介绍了在 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. *

.foo {
  width: 200px;
  height: 200px;
  overflow-y: hidden;
}
<iframe src="https://bing.com"
        class="foo"
        scrolling="no" >
</iframe>

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

07-24 07:00