This will help with bringing the central div to sit alongside the left div, but the central div will still fill the rest of the space to its right, pushing the ride div down beneath it.If the left column is of fixed width, the only css the central column needs is
Code:#center { width:auto; margin-left:150px; /*or more if you want spacing between the divs*/ }
With that code, and that markup it behaves the same in every browser