Answers for "bootstrap background table"

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
0

bootstrap table

<table class="table table-dark table-hover">
  ...
</table>
Posted by: Guest on July-06-2021

Code answers related to "bootstrap background table"

Browse Popular Code Answers by Language