Skip to content

Instantly share code, notes, and snippets.

@defims
Created April 24, 2014 08:59
Show Gist options
  • Save defims/11247263 to your computer and use it in GitHub Desktop.
Save defims/11247263 to your computer and use it in GitHub Desktop.
<!doctype html>
<head>
.a.b{
background : gray;
}
.a.b.c.d.e.f{
background : yellow;
}
</head>
<body>
<div class="a b">
a and b
</div>
<div class="a b c d e f">
a,b,c,d,e and f
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment