Answers for "class="table table-striped"> css text"

CSS
4

striped tables css

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

bootstrap table striped change color

tr:nth-child(odd) {
    background-color: lightskyblue;
    }

   tr:nth-child(even) {
    background-color: lightpink;
    }

    th {
       background-color: lightseagreen;
    }
Posted by: Guest on November-23-2021

Code answers related to "class="table table-striped"> css text"

Browse Popular Code Answers by Language