Skip to content

Instantly share code, notes, and snippets.

@rickharris
Created September 18, 2010 00:13
Show Gist options
  • Save rickharris/585180 to your computer and use it in GitHub Desktop.
Save rickharris/585180 to your computer and use it in GitHub Desktop.
.grid_1 { width: 120px; margin-left: 20px; }
.another-section { .grid_1; }
/* lessc turns this into: */
.grid_1, .another-section {
width: 120px;
margin-left: 20px;
}
/* plessc turns the same code into: */
.grid_1 {
width:120px;
margin-left:20px;
}
.another-section {
width:120px;
margin-left:20px;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment