Can anyone help me find a fluid layout that looks like this http://img257.imageshack.us/img257/9531/css.gif and it should in all major browsers such as IE6, IE7, FF2, FF3, Chrome, Opera, Safari.
This can be a basic starting point, but then you have to polish it further to suit your needs <div id="out"> <!-- Outermost Block --> <h1 id="header">Header</h1> <!-- / Header --> <ul id="menu"> <li><a href="#">Menu Link 1</a></li> <li><a href="#">Menu Link 2</a></li> <li><a href="#">Menu Link 3</a></li> </ul> <!-- / Menu Navigation Ends --> <div id="content" style="width:70%; float:left; "> Content Goes here. Its 70% width and floated LEFT. </div> <!-- / Content Ends --> <div id="sidebar" style="width:28%; float:right;"> Sidebar. Its 28% width and floated RIGHT so that we have 2% space in the middle automatically, no need of 'margin' property. </div> <!-- / Sidebar Ends --> <h6 id="footer" style="clear"both;"> Footer has clear:both for clearing floats on content and sidebars. </h6> <!-- / Footer Ends --> </div> <!-- / Outermost Block Ends --> HTML: