Answers for "table bootstrap background color"

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
2

Bootstrap table small

<table class="table table-sm">
  ...
</table>
Posted by: Guest on October-11-2021

Code answers related to "table bootstrap background color"

Browse Popular Code Answers by Language