/ Published in: CSS
Expanding on the above 2-column layout is this common 3-column layout. Again the widths are arbitrary, but necessary. You can float the secondary div to the right if you prefer.
Expand |
Embed | Plain Text
1 #wrapper {width:960px; margin:0 auto} 2 #primary {float:left; width:230px} 3 #content {float:left; width:500px} 4 #secondary {float:left; width:230px} 5 #footer {clear: both}
You need to login to post a comment.
