如何在Iframe标签中隐藏水平滚动条?

时间:2015-02-23 13:38:01

标签: html css iframe scrollbar

我在div中有一个iframe。我需要隐藏水平滚动条。 我只需要激活垂直的一个。​​

HTML代码

<div id="rc">
    <div>
        <iframe class="defRC" src="url"></iframe>
    </div>
    <div class="clear">
</div> 

我添加了一些CSS代码,但没有成功

.defRC {
   overflow-y: hidden;
   width: 1000px; 
   height: 600px;
}

1 个答案:

答案 0 :(得分:0)

<iframe scr="url" class="defRC" scrolling="no" />

另见:https://stackoverflow.com/a/18470016/2277280