I would like to remove (i.e. hide) the vertical scrollbar from an iframe. I have tried using overflow:hidden
and scroll="no"
but the scrollbar still appears.
This is what I have tried:
<iframe name = "iframemc" id="iframemc" scrolling="no" frameborder="0" style="background-color: white; float:none; margin-left:40px; overflow:hidden" runat="server" width="800px" height="620px" ></iframe>
What can I try next?