I know this question has been asked a lot before but the problem is that I'm trying to build a responsive tool with html, css, Jquery. I'm using an iframe to display the html (example: a landing page) a see the different responsive views, but when the content is higher that the window the scroll bar appears (horizontal, vertical bar), I would like to dissapear at least the horizontal bar, because if I have a responsive view of 320px, when scrollbar appears it hides part of the content and I have to use the horizontal scroll.
I tried different codes no one worked. So could you please help me. Thanks!
<div id="resize-box">
<iframe src="blank.html" frameborder=0 scrolling="no"></iframe>
</div>
If I use "scrolling no" it hides the scroll bar but the functionally stops working and I'll need it.
I tried this but no lucky. Hide horizontal scrollbar on an iframe?