Answers for "remove all borders from the table"

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
11

table border css

table, th, td {
  border: 1px solid black;
}
Posted by: Guest on April-14-2020
0

remove border table css

table {border: none;}
Posted by: Guest on September-19-2020

Browse Popular Code Answers by Language