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

后端 未结 12 1345
温柔的废话
温柔的废话 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 03:16

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

    change this line in bootstrap.css or you could use (odd) or (even) instead of (2n+1)

提交回复
热议问题