I have an IFrame on my page that I would like to show the vertical scroll bar ONLY (no horizontal scroll bar). I can get it to work exactly how I want it in Firefox, but the scroll bars just will not show up in IE(8).
<iframe name="Frame" id="Frame" frameborder="0" scrolling="yes" marginwidth="0px" marginheight="0px" style="height:300px; width:1055px; overflow-x:hidden; margin-left:-30px"></iframe>
I tried putting the above into a div, and I finally get scrollbars, but since the IFrame itself isn't growing, they are never activated.
Are there any IE specific properties that I can use to get this to work on both browsers, or am I going at this the wrong way?
Thanks, Jeff