PerlIsGood
Programmer
I have a site with a couple stacking absolute divs. In FF it's working fine, but IE isn't liking it too much. You can view the example here: and the css file
Any ideas why IE isn't displaying the divs? Main.css is what's being used, ie.css has no elements declared at the moment (it's blank).
html
Notorious P.I.G.
Any ideas why IE isn't displaying the divs? Main.css is what's being used, ie.css has no elements declared at the moment (it's blank).
html
Code:
<!DOCTYPE html
PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"[URL unfurl="true"]http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">[/URL]
<html xmlns="[URL unfurl="true"]http://www.w3.org/1999/xhtml"[/URL] xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<meta http-equiv="imagetoolbar" content="no" />
<title>WGI Underground Utilities</title>
<link rel="stylesheet" href="main.css" type="text/css" media="screen" />
<!--[if lte IE 6]>
<link rel="stylesheet" href="ie.css" type="text/css" media="screen" />
<![endif]-->
</head>
<body>
<div id="head">
<img src="picts/logo.jpg" alt="WGI Underground Utilities" width="274px" height="150px" />
</div>
<div id="menu">
<?php
readfile('tab_menu.txt');
?>
</div>
<div id="flash">
<?php
readfile('header.txt');
?>
</div>
<div id="content">
<h1>Welcome</h1>
<p></p>
<p></p>
<p></p>
<h1>Mission</h1>
<p></p>
</div>
<div id="sub1">
<?php
readfile('sidebar1.txt');
?>
</div>
<div id="sub2">
<?php
readfile('sidebar2.txt');
?>
</div>
<div id="pipe">
<?php
readfile('menu.txt');
?>
</div>
<div id="footer">
<?php
readfile('copyright.txt');
?>
</div>
</body>
</html>
Notorious P.I.G.