I have an iframe for which we need to show only horizontal scroll bar and prevent vertical scroll bar.
<div class="restricted">
<iframe runat="server" id="ifEmailBody" scrolling="auto" width="600" frameborder="1"> </iframe>
</div>
.restricted{overflow:hidden; overflow-y: hidden;}
.restricted iframe
{
overflow:hidden;
overflow-y: hidden;
}
This is hiding vertical scroll bar in Fireforx. But it is not hiding it in Chrome and IE.
Can somebody advise how to fix it?