CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   HTML & CSS (http://www.codingforums.com/forumdisplay.php?f=13)
-   -   IFrame and NS6 (http://www.codingforums.com/showthread.php?t=210)

QuackHead 06-17-2002 10:30 PM

IFrame and NS6
 
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)))

jkd 06-18-2002 12:23 AM

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...

Code:

<iframe src="blah"><ilayer src="blah"></ilayer></iframe>
Would it be something like that?

Thanks

~Quack

jkd 06-18-2002 05:41 PM

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...


All times are GMT +1. The time now is 05:10 PM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.