I'd like to think they look good? Not trying to put you down Winstinology. That statement just went against everything I've ever been told in this forum. This is the code I wrote that works, at least in IE7 and FF for Windoze. I had to make 2 separate style sheets for each browser with a redirect in the html but it works.
HTML:
CODE
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<head>
<title>Test</title>
<link rel="stylesheet" type="text/css" href="NewStyleIE.css" />
<![if !IE]>
<link rel="stylesheet" type="text/css" href="NewStyleFF.css" />
<![endif]>
</head>
<body>
<div id="top">
<img src="./top.png" class="top" alt="picture"/>
</div>
<div id="left">
<img src="./left.png" class="left" alt="picture"/>
</div>
<div id="center">
<img src="./center.png" class="center" alt="picture"/>
</div>
<div id="right">
<img src="./right.png" class="right" alt="picture"/>
</div>
<div id="bottom">
<img src="./top.png" class="bottom" alt="picture"/>
</div>
</body>
</html>
CSS for IE
CODE
.top { margin-left: 55px;
margin-right: auto;
width:875px;
height:170px;
}
.left { margin-left: 55px;
margin-right: auto;
margin-top: -5px;
width:100px;
height:600px;
}
.right{ margin-left: 755px;
margin-right: auto;
margin-top:-638px;
width:175px;
height:600px;
}
.center{
margin-left: 155px;
margin-right: auto;
margin-top:-619px;
width:600px;
height:600px;
}
.bottom{
margin-left: 55px;
margin-right: auto;
margin-top:-42px;
width:875px;
height:170px;
}
CSS for FF:
CODE
.top { margin-left: 60px;
margin-right: auto;
width:875px;
height:170px;
}
.left { margin-left: 60px;
margin-right: auto;
width:100px;
height:600px;
}
.right{ margin-left: 760px;
margin-right: auto;
margin-top:-600px;
width:175px;
height:600px;
}
.center{
margin-left: 160px;
margin-right: auto;
margin-top:-600px;
width:600px;
height:600px;
}
.bottom{margin-left: 60px;
margin-right: auto;
width:875px;
height:170px;
}