.mac{margin-left:auto; margin-right:auto;}
.table{.mac; color:red;}
I want to be able to do that, it doesn't make sense to me why I would need to do:
.table{margin-left:auto; margin-right:auto; color:red;}
I know for the table I could do:
<table class="table mac">
or just type the .table{margin-left:auto; margin-right; color;}
like above but that seems redundant.
Is there some way to do what I'm trying to accomplish in my first statement, is there some special syntax that I'm not aware of to make this work?