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

后端 未结 12 1248
温柔的废话
温柔的废话 2020-12-01 02:21

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

12条回答
  •  有刺的猬
    2020-12-01 02:57

    Add the following CSS style after loading Bootstrap:

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

提交回复
热议问题