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
Delete table-striped Its overriding your attempts to change row color.
Then do this In css
tr:nth-child(odd) { background-color: lightskyblue; } tr:nth-child(even) { background-color: lightpink; } th { background-color: lightseagreen; }