I am using bootstrap to style tables, e.g.,
<table class="table table-striped main">
but the table that I want to style is actually generated programmatically by another tool that I don't control, and it already comes with its own table class tag:
<table class="foo">
I can include css style sheets though. Is there a way to alias "foo" and "table-striped" to be the same class in my own css?