1

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?

mmssaann
  • 1,457
  • 6
  • 27
  • 53

1 Answers1

0

Safari/Chrome (Webkit) - Cannot hide iframe vertical scrollbar

Hope you can find solution here

Community
  • 1
  • 1
G.L.P
  • 7,051
  • 4
  • 22
  • 40