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

后端 未结 12 1348
温柔的废话
温柔的废话 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:56

    If using SASS and Bootstrap 4, you can change the alternating background row color for both .table and .table-dark with:

    $table-accent-bg: #990000;
    $table-dark-accent-bg: #990000;
    

提交回复
热议问题