0

how to disable the scroll bar in iframe and yet load the complete web page and scroll up and down with browser scroll bar? The iframe should look as its a part of the page and not iframe.

littleanimboy
  • 367
  • 1
  • 5
  • 17

2 Answers2

1

You want something like this:

<iframe src="" scrolling="no" seamless></iframe>

When present, seamless attribute specifies that the <iframe> should look like it is a part of the containing document and then no borders or scrollbars. Bad point is only supported in Opera, Chrome and Safari.

and with css:

iframe { 
    overflow:hidden; 
} 
Francois Borgies
  • 2,340
  • 30
  • 38
0

try this,

 <iframe src="" scrolling="no"></iframe>

or

 iframe { 
    overflow:hidden; 
 }

or

 iframe {
      overflow-x:hidden;
      overflow-y:hidden;
  }
hari
  • 1,756
  • 1
  • 15
  • 10