Forum Moderators: open

Message Too Old, No Replies

Iframe ScrollBar Removal

How do I?

         

xcandyman

1:38 pm on Sep 27, 2002 (gmt 0)

10+ Year Member



Hi Everyone

Im trying to create a multi line Iframe field, but when data goes over the specified line depth I dont want the scrollbar to appear on the right hand side

How do I do this. I have seen it done before

Thank you

Steve

tedster

2:29 pm on Sep 27, 2002 (gmt 0)

WebmasterWorld Senior Member 10+ Year Member



Iframes (inline frames) take pretty much the same attributes as a standard frames, with the exception of "noresize" since iframes can never be resized.

<iframe src="foo.html" width="400" height="500" scrolling="no" frameborder="0"></iframe>

W3C page about frames and iframes [w3.org]

xcandyman

3:03 pm on Sep 27, 2002 (gmt 0)

10+ Year Member



Thanks Its working now!