Answers for "how to cha nge color of stripped tr in bootstrap table"

2

bootstrap table row span

<td colspan="2">Content here</td> // or...
<td rowspan="2">Content here</td>
Posted by: Guest on July-03-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

Browse Popular Code Answers by Language