简体   繁体   中英

How to hide Horizontal scrollbar in Iframe tag?

I have an iframe inside a div. I need to hide the horizontal scrolling bar. I just need the vertical one activated.

HTML Code

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

I've added some CSS code but without success

.defRC {
   overflow-y: hidden;
   width: 1000px; 
   height: 600px;
}
<iframe scr="url" class="defRC" scrolling="no" />

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM