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