Created
October 29, 2014 09:08
-
-
Save BlackHC/cfe05f9a6c599932e34e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="mytable"> | |
<tfoot> | |
<tr> | |
<td class="mytd"> | |
Hello | |
</td> | |
</tr> | |
</tfoot> | |
</table> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ---- | |
// Sass (v3.4.6) | |
// Compass (v1.0.1) | |
// ---- | |
%acx-table { | |
> tfoot { | |
> tr { | |
> %acx-th, | |
> %acx-td { | |
color: red; | |
} | |
} | |
} | |
} | |
table { | |
@extend %acx-table; | |
} | |
td { | |
@extend %acx-td; | |
} | |
.mytable { | |
@extend %acx-table; | |
} | |
.mytable .mytd { | |
color: blue; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
table > tfoot > tr > td, | |
.mytable > tfoot > tr > td { | |
color: red; | |
} | |
.mytable .mytd { | |
color: blue; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<table class="mytable"> | |
<tfoot> | |
<tr> | |
<td class="mytd"> | |
Hello | |
</td> | |
</tr> | |
</tfoot> | |
</table> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment