Skip to content

Instantly share code, notes, and snippets.

@DaveKin
Created November 18, 2015 15:42
Show Gist options
  • Save DaveKin/5ba09588693f246f5914 to your computer and use it in GitHub Desktop.
Save DaveKin/5ba09588693f246f5914 to your computer and use it in GitHub Desktop.
test selector counts
.a,.b,.c,.d,.e{
display: block;
color: red;
}
.f,.g{
display: inline;
}
.b,.f{
color: green;
}
.a{
display: block;
color: red;
}
.b{
display: block;
color: green;
}
.c{
display: block;
color: red;
}
.d{
display: block;
color: red;
}
.e{
display: block;
color: red;
}
.f{
display: inline;
color:green;
}
.g{
display: inline;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment