Answers for "how to remove the border around table cells in css"

1

how to remove table border line

table {
    border: 1px solid #CCC;
    border-collapse: collapse;
}

td {
    border: none;
}
Posted by: Guest on July-28-2020

Code answers related to "how to remove the border around table cells in css"

Browse Popular Code Answers by Language