Answers for "zebra table style html css"

CSS
4

striped tables css

tr:nth-child(even) {
  background-color: #f1f8ff;
}
Posted by: Guest on June-26-2020
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