hi all,
Im working on a website and need to make a Divider. I coded one, but no matter what, the form isnt made.
Heres my code. Can anyone tell me whats wrong?
CSS:
#wrapper {width:1000px;
margin:0 auto;
}
#header {background-color:yellow;
text-align:center; height:50px
}
#footer{clear:both;
background-color:yellow ;
text-allign:center;
}
#navigation {width870px; padding: 20px;
background-color:blue; text-align:left;
height:50px;
}
#content {float:left;width870px;
padding:20px; background-color:gray;
text-align:left; height:500px
}
#sidebar{clear:both; float: left;
width:50px; padding:20px; background-color:green;
text-align:right; height:500px;
}
HTML:
<! DOCTYPE html>
<html>
<head> <title>Website</title>
<link rel="css" type="text/css" href="css.css" />
</head>
<body>
<div id="header">
This is my header.
</div>
<div id="navigation">
This is my navigation.
</div>
<div id="content">
This is my content box.
</div>
<div id="sidebar">
This is my sidebar.
</div>
<div id="footer">
This is my footer.
</div>
</body>
</html>