HTML code for non-scrolling iframe?

*kiwi*

New member
I am trying to make an iframe that doesn't vertically scroll. So like when words go longer than the iframe, the iframe's height just extends longer.

Kind of like a table. When you type enough, the table just gets longer in height.

Is there a code for that?

PS I have tried the code 'scrolling=no' but that doesn't work because then it just hides the words that don't fit in the frame.
 
You might want to either use a php include:
<php include("LINK") ?>

Or an expandable div which uses CSS and HTML:
CSS:

#expandable {
Width: 300px;
Background-colour: 333333;
}


HTML:

<div align="center" Id="expandable">text goes here, this will now be expandable <br><br> like this</div>
 
Back
Top