Skip to content

Instantly share code, notes, and snippets.

@pavelpower
Created July 21, 2014 10:46
Show Gist options
  • Save pavelpower/4b64f023987aa7236e80 to your computer and use it in GitHub Desktop.
Save pavelpower/4b64f023987aa7236e80 to your computer and use it in GitHub Desktop.
test
/*
<div id="id_1">
<div class="class_1">TEXT_1</div>
<div id="id_2" class="class_1">TEXT_2</div>
</div>
*/
div
{
color: black;
}
div.class_1
{
color: red;
}
div .class_1
{
color: green;
}
#id_2
{
color: blue;
}
#id_1 .class_1
{
color: yellow;
}
#id_2 .class_1
{
color: cyan;
}
#id_2.class_1
{
color: white;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment