Change the colors of the zebra bootstrap table

0

I'm using the bootstrap and a table with

  

table-striped

And you're getting a very bright zebra, how do I change the zebra colors?

    
asked by anonymous 23.06.2016 / 01:55

1 answer

1

In your css file, overwrite the table-stripes class:

.table-striped>tbody>tr:nth-child(odd)>td, 
.table-striped>tbody>tr:nth-child(odd)>th {
   background-color: red;
}

Change the color you want to change the network by the color you want.

    
23.06.2016 / 02:14