Currently, I’m utilizing bootstrap for table styling. For instance:
<table class="table table-striped main">
However, the table I want to style is dynamically generated by a separate tool that I have no control over, and it already has its own table class assigned:
<table class="foo">
Although I can add css style sheets, I want to know if there is a way to make "foo" and "table-striped" interchangeable as the same class in my css.