remove all borders from the table code example
Example 1: how to remove table border line
table {
border: 1px solid #CCC;
border-collapse: collapse;
}
td {
border: none;
}
Example 2: table border css
table, th, td {
border: 1px solid black;
}