QuackHead
06-17-2002, 10:30 PM
I'm having trouble with the iFrame tag in Netscape 6 - for some reason the iframe is not displaying...
here's the code <iframe src="the_html_file" width="98%" height="75%" frameborder="0"></iframe>
Thanks for your help.
~Quack
justame
06-18-2002, 12:08 AM
qua...
mayyybe this link will just a help®...
http://www.google.ca/search?q=iframe+in+nn6&hl=en&meta=
just a goodluck® :O)))
I've used iframes all the time with no trouble at all in Moz. I always use CSS as opposed to width and height attributes though, but that wouldn't affect it not displaying.
QuackHead
06-18-2002, 02:48 PM
What would be the best way to apply CSS to an IFrame?
Also, what's the proper format for Netscape 4 proofing the IFrame (using ILayer)
To clarify, where should I put the ILayer tags to correspond with the IFrame tags...
<iframe src="blah"><ilayer src="blah"></ilayer></iframe>
Would it be something like that?
Thanks
~Quack
That way seems fine, though it really doesn't matter. The tags are currently mutually exclusive (no browser supports both).
Anyway, I just go for CSS:
iframe {
width: bla;
height: bla;
/* etc */
}
Or assign it an id and style it from #myid. or a class, and from .myclass
QuackHead
06-18-2002, 05:45 PM
thanks jkd,
I'll give it a try and let you know how it goes...