Change colors from zebra bootstrap table

Asked

Viewed 3,187 times

0

I’m using the bootstrap and a table with

table-Striped

and a zebra is getting very light, ?

1 answer

1


In your css file overwrite the class table-Stripes:

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

Change the color as you wish red by the desired color..

  • worked out, thank you.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.