Answers for "striped table row"

CSS
4

striped tables css

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

striped table bootstrap

// Add the table and table striped class from bootstrap
<table class="table table-striped">
Posted by: Guest on May-27-2021

Browse Popular Code Answers by Language