Topic: How to get rid of 3px space between two Div's
Share/Save/Bookmark

Description: If you put two <Div> tags horizontally next to each other, you will notice a 3px gap if the one on the left is set to float.  This only happens in IE5 and IE6.  


To fix this you can add the following to your CSS file.

/* hide from mac \*/
* html .left {margin-right: -3px;}
* html .right {margin-left: 0;}
/* end hide */