Hi,
I have two divs in a container. One is left bar and another is right bar. I need some advice/suggestions to use which method.
Method 1:
#container{ width:800px; margin:0 auto;}
#leftbar{ float:left; width:200px; }
#rightbar{ float:right: width:550px;}
Method 2:
#container{width:800px; margin:0 auto;}
#leftbar{ float:left; width:200px; }
#rightbar{ margin:0 0 0 210px; width:550px;}
Please advice which one is good practice.