HTML Table with No Space

holtkinshasa

New Member
I have the following CSS code:\[code\] tr.uprightTr { padding: 0px; margin: 0px; height: 10px; border: none; border-spacing: 0px; } td.uprightTd { padding: 0px; margin: 0px; height: 10px; border: none; border-spacing: 0px; } table.uprightTbl { padding: 0px; margin: 0px; border: none; border-collapse: collapse; border-spacing: 0px; }\[/code\]And the following HTML:\[code\]<table class="uprightTbl" cellpadding="0" cellspacing="0"> <tr class="uprightTr"> <td class="uprightTd"><input type="checkbox" /></td>...\[/code\]No matter what I tried, it keeps some space between elements. Any ideas on what I can try or might be doing wrong?P.S: I also checked out the element on Chrome, element reaches the related css lines successfully.
 
Back
Top