I've looked all over the web for solutions to this problem, but none of them seem to work properly. Either all the suggestions I saw were from 2005 and before and aren't applicable now (or are broken now with the latest browser updates), or they require making changes to the iframe source code (which I don't have access to).
So anyway, is there a way to disable only the horizontal scrollbar in an iframe if you can't modify the source code of the iframe itself? I went with the:
<iframe
style = "overflow-x:hidden;overflow-y:scroll;"
src = "blahblah.html">
</iframe>
This works perfectly in firefox, but doesn't in any other browser. Any suggestions?