Answers for "which of the following classes styles a table as a basic table with stripes on rows? .table .table-striped .table-hover .table-bordered"

CSS
4

striped tables css

tr:nth-child(even) {
  background-color: #f1f8ff;
}
Posted by: Guest on June-26-2020

Code answers related to "which of the following classes styles a table as a basic table with stripes on rows? .table .table-striped .table-hover .table-bordered"

Browse Popular Code Answers by Language