Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CSS

bootstrap table striped change color

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

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

    th {
       background-color: lightseagreen;
    }
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #bootstrap #table #striped #change #color
ADD COMMENT
Topic
Name
2+6 =