View Single Post
Old 01-29-2013, 03:46 AM   PM User | #2
Excavator
Master Coder


 
Excavator's Avatar
 
Join Date: Dec 2006
Location: Alaska
Posts: 9,410
Thanks: 22
Thanked 1,765 Times in 1,749 Posts
Excavator has a spectacular aura aboutExcavator has a spectacular aura aboutExcavator has a spectacular aura about
Hello surreal5335,
Look at it this way and see if it works for you -
Code:
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">
html, body {margin: 0;}
#left {
	height: 600px; /*demo only*/
	width: 400px;
	float: left; 
	background: #3ff;
}
#right {
	height: 600px; /*demo only*/
	margin: 0 0 0 400px;
	background: #f00;
}
</style>
</head>
<body>
        <div id="left">
        <!--end left--></div>
    <div id="right">
    <!--end right--></div>
</body>
</html>
Based on this simple 2 column demo.
__________________
Validate often DURING development - Use it like a splelchecker | Debug during Development |Write it for FireFox, ignore IE
Use the right DocType | Validate your markup | Validate your CSS | Why validating is good | Why tables are bad
Excavator is offline   Reply With Quote