how to remove the border around table cells in css code example
Example: how to remove table border line
table {
border: 1px solid #CCC;
border-collapse: collapse;
}
td {
border: none;
}
table {
border: 1px solid #CCC;
border-collapse: collapse;
}
td {
border: none;
}