remove border on section of a table css code example
Example 1: how to remove table border line
table {
border: 1px solid #CCC;
border-collapse: collapse;
}
td {
border: none;
}
Example 2: remove border table css
<table cellspacing="0" cellpadding="0">