Hi,
Here's a basic 3 col fixed:
html:
Code:
<div id="wrap">
<div id="header">
<h1>Header Text</h1>
</div>
<div id="left">
left stuff
</div>
<div id="right">
right stuff
</div>
<div id="center">
center content
</div>
<div id="footer">
footer
</div>
</div>
css:
Code:
body {
text-align: center;
}
div {
text-align: left;
}
#wrap {
width: 700px;
margin: 0 auto;
}
#header {
background: blue;
height: 250px;
}
#left {
float: left;
width: 150px;
}
#right {
float: right;
width: 250px;
}
#center {
margin: 0 250px 0 150px;
}
#footer {
clear: both;
}
Bookmarks