Connecting Tech Pros Worldwide Help | Site Map

IFrame align="center" in Netscape and Firefox

  #1  
Old July 23rd, 2005, 08:52 PM
50295@web.de
Guest
 
Posts: n/a
Hi!

I'm trying to set the align property/attribute of an IFrame to center
but its not working (see below). Can anyone please tell me what's going
on, and if there's a work around for this?

Thanks,

- Olumide

/////////////////// code //////////////////

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>

<title>test</title>
</head>

<body>

<iframe src="sampleContent.htm" width="620" height="500"
align="center"></iframe>

</body>
</html>

  #2  
Old July 23rd, 2005, 08:53 PM
RobB
Guest
 
Posts: n/a

re: IFrame align="center" in Netscape and Firefox


5...@web.de wrote:[color=blue]
> Hi!
>
> I'm trying to set the align property/attribute of an IFrame to center
> but its not working (see below). Can anyone please tell me what's[/color]
going[color=blue]
> on, and if there's a work around for this?
>
> Thanks,
>
> - Olumide
>
> /////////////////// code //////////////////
>
> <html>
> <head>
> <meta http-equiv="Content-Type" content="text/html;[/color]
charset=iso-8859-1"[color=blue]
> />
>
> <title>test</title>
> </head>
>
> <body>
>
> <iframe src="sampleContent.htm" width="620" height="500"
> align="center"></iframe>
>
> </body>
> </html>[/color]

Use CSS, along with a proper doctype:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"
/>
<title>test</title>
<style type="text/css">

body {
text-align: center;
}
#foo {
display: block;
width: 620px;
height: 500px;
margin: 0 auto;
}

</style>
</head>
<body>
<iframe id="foo" src="sampleContent.htm"></iframe>
</body>
</html>

The body rule is for ie5win:

http://www.bluerobot.com/web/css/center1.html

  #3  
Old July 23rd, 2005, 08:57 PM
Nate Pilkington
Guest
 
Posts: n/a

re: IFrame align="center" in Netscape and Firefox


50295@web.de wrote:[color=blue]
> Hi!
>
> I'm trying to set the align property/attribute of an IFrame to center
> but its not working (see below). Can anyone please tell me what's going
> on, and if there's a work around for this?[/color]

<SNIP>

Perhaps this is not Javascript?

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Help! document.getElementById("folderMenu").cells has no properties when using FireFox davidkarlsson74@hotmail.com answers 3 September 14th, 2005 03:55 PM
IFrame align="center" in Netscape and Firefox 50295@web.de answers 1 July 24th, 2005 01:28 AM
IFrame align="center" in Netscape and Firefox 50295@web.de answers 1 July 21st, 2005 02:54 AM