Answers for "css3 tables styles"

CSS
6

basic css table

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

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

Browse Popular Code Answers by Language