I have been building dynamic HTML to handle desktop/mobile width dimensions with the bootstrap grid system.
Is there a way to combine css classes in a "parent" class to limit duplicate code?
Example, Change:
<div class="col-lg-6 col-md-6 col-sm-6 col-xs-6"></div>
To:
<div class="all-column"></div>
Where the .all-column class combines all class widths into one class?