Answers for "style table header css"

CSS
11

table border css

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

basic css table

table, td, th {
  border: 1px solid black;
}

table {
  border-collapse: collapse;
}
Posted by: Guest on June-17-2021
1

html header for all the table

<th colspan="3">    </th>
Posted by: Guest on July-19-2021

Browse Popular Code Answers by Language