Just Add scrolling="no"
and seamless="seamless"
attributes to iframe tag. like this:-
1. XHTML => scrolling="no"
2. HTML5 => seamless="seamless"
UPDATE:
seamless
attribute has been removed in all major browsers
<div id="myInfoDiv" seamless="seamless" scrolling="no" style="width:100%; height: 100%; float: left; color: #FFF; background:#ed8719; line-height:100%; font-size:100%; font-family: sans-serif>;
Use the above div and it will not show scroll bar in any browser.
This is a last resort, but worth mentioning -
you can use the ::-webkit-scrollbar
pseudo-element on the iframe
's parent to get rid of those famous 90's scroll bars.
::-webkit-scrollbar {
width: 0px;
height: 0px;
}
Edit: though it's relatively supported, ::-webkit-scrollbar
may not suit all browsers. use with caution :)
Try adding scrolling="no"
attribute like below:
<iframe frameborder="0" scrolling="no" style="height:380px;width:6000px;border:none;" src='https://yoururl'></iframe>
Add this in your css to hide just the horizontal scroll bar
iframe{
overflow-x:hidden;
}
in your css:
iframe{
overflow:hidden;
}