Search code examples
csstwitter-bootstraphtml-table

Bootstrap table striped: How do I change the stripe background colour?


With Bootstrap class table-striped, every other row in my table has a background colour equal to #F9F9F9. How can I change this colour?


Solution

  • .table-striped > tbody > tr:nth-child(2n+1) > td, .table-striped > tbody > tr:nth-child(2n+1) > th {
       background-color: red;
    }
    

    add this line into your style.css after main bootstrap.css or you could use (odd) or (even) instead of (2n+1)