Answers for "bootstrap table has no styling"

CSS
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 responsive

<table class="table table-responsive">
  ...
</table>
Posted by: Guest on November-06-2021

Browse Popular Code Answers by Language