With Bootstrap class table-striped, every other row in my table has a background colour equal to #F9F9F9. How can I change this colour?
table-striped
#F9F9F9
If using SASS and Bootstrap 4, you can change the alternating background row color for both .table and .table-dark with:
.table
.table-dark
$table-accent-bg: #990000; $table-dark-accent-bg: #990000;