View Single Post
Old 10-25-2010, 03:40 PM   PM User | #4
SB65
Senior Coder

 
Join Date: Feb 2009
Location: West Yorkshire
Posts: 2,817
Thanks: 9
Thanked 681 Times in 675 Posts
SB65 will become famous soon enoughSB65 will become famous soon enough
You're welcome. I might add that that tutorial is deficient in that there is no doctype specified on the page - without this IE in particular is quite likely to misbehave. You should have a doctype at the very top of your html:

Code:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<link href="style.css" rel="stylesheet" type="text/css">
</head>
<body>

<div id="container">

<div id="header">A</div>

<div id="leftnav">B</div>

<div id="rightnav">E</div>

<div id="body">C</div>

<div id="footer">D</div>

</div>

</body>
</html>
SB65 is offline   Reply With Quote