Dealing with multiple tables of the same size can be a hassle when adding individual classes to each one. Is there a way to apply multiple Bootstrap classes to one class in the stylesheet? For example, using
<table class='table table dark>
currently gives the desired result.
Is there a more efficient way to achieve this through Bootstrap's styling?
Instead of manually adding several classes to each table every time, is it possible to define something in the CSS like below:
.table {
table: Table;
table: table-dark;
}