It took me some time to figure out the CSS equivalent of the HTML cellspacing=”0″ property. Following is what worked for me.
<table cellspacing=”0″>
Can be written as
<style>
.myclass {border-collapse: collapse;}
</style>
<table class=”myclass”>
Hope someone benefits from it.
Tags: browser differences, css, firefox, ie6, javascript












I benefit! Have been wondering about that one for years. Thanks.