Answers for "how to style table headers in css"

4

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