How do I remove the (small) whitespace between table cells? I've tried 3 things to no avail
<html>
    <!-- How to remove white space between table cells? -->
    <style>
td { background-color : #888888; border-collapse : collapse; border-width : 0px; padding : 0px; }
    </style>
    <body>
        <table>
            <tr><td>A</td><td>A</td><td>A</td></tr>
        </table>
    </body>
</html>Thanks in advance for any insight you can provide.

 
     
     
    