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,507
  • 6
  • 27
  • 55

1 Answers1

0

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

Hope you can find solution here

Community
  • 1
  • 1
G.L.P
  • 7,119
  • 5
  • 25
  • 41