If this is for a CSS Div might I recommend you do away with it? CSS can use percentages for width, you know, and then the browser will adjust if the window size is changed.
I'm guessing you want a box with some border around it, use
Code:
div#container{
padding:25px;
background-color:red;
}
div#header{
background-color:green;
}
div#content{
background-color:blue;
}
div#footer{
background-color:yellow;
}
with
HTML Code:
<html>
<head>
<title>WriterSite</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="container">
<div id="header">
<p class="navigation">WriterSite</p>
<h1>Welcome</h1>
</div>
<div id="content">
<p>This website is for Omnisoft WriterSite</p>
</div>
<div id="footer">
<p>Copyright (C) Me 2008</p>
</div>
</div>
</body>
</html>