Possible Duplicate:
html and css syntax
I am trying to make a 3 column page
this is the CSS:
#left {
float: left;
width: 150 px;
background-color: blue;
height: 400px;
}
#center {
margin-left: auto;
margin-right: auto;
margin-top: 0px;
width: 600 px;
background-color: yellow;
height: 400px;
clear: none;
}
#right {
float: right;
width: 150px;
background-color: red;
height: 400px;
}
When I view the html file in my browser, the right column just drops down below the left column, what am I doing wrong?