I want to customize the colors of Bootstrap's striped tables... but only of some of them. In other words, I don't want a global change; I just want to customize the colors in one specific table on my site. Following these two questions:
How to combine class and ID in CSS selector?
Bootstrap table striped: How do I change the stripe background colour?
I tried to define my table and CSS as:
<table class="table-condensed table-striped" id="info_envio">
#info_envio.table-striped>tr:nth-child(odd){
background-color:red;
}
But it doesn't work.
I have the feeling that it must be something really simple. A little hand, please?