#Another concept here
#single css
.table {
color: red;
}
.table-striped {
font-size: 10px;
}
.table-bordered {
background-color: black;
}
.table-condensed {
padding: 10px;
}
for extend multiple class overwrite or extend
.element {
@xtend .table;
@extend .table-striped;
@extend .table-bordered;
@extend .table-condensed;
}
it's better than prev extend
.element {
@extend #{'.table', '.table-striped', '.table-bordered','.table-
condensed',....'.class-n'};
// ohters css here
}
It's simple and works fine, just u add inside the second curly brasses.
===Thank you===