css remove border from table code example
Example 1: remove border between td
table {
border-collapse: collapse;
}
Example 2: remove border table css
table {border: none;}
Example 3: remove border table css
<table cellspacing="0" cellpadding="0">