0
I’m using the bootstrap and a table with
table-Striped
and a zebra is getting very light, ?
0
I’m using the bootstrap and a table with
table-Striped
and a zebra is getting very light, ?
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..
Browser other questions tagged html css twitter-bootstrap table
You are not signed in. Login or sign up in order to post.
worked out, thank you.
– Chefe Druida