Skip to content

Instantly share code, notes, and snippets.

@BlackHC
Created October 29, 2014 09:08
Show Gist options
  • Save BlackHC/cfe05f9a6c599932e34e to your computer and use it in GitHub Desktop.
Save BlackHC/cfe05f9a6c599932e34e to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
<table class="mytable">
<tfoot>
<tr>
<td class="mytd">
Hello
</td>
</tr>
</tfoot>
</table>
// ----
// 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;
}
table > tfoot > tr > td,
.mytable > tfoot > tr > td {
color: red;
}
.mytable .mytd {
color: blue;
}
<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