Skip to content

Instantly share code, notes, and snippets.

@nporteschaikin
Created May 22, 2015 00:09
Show Gist options
  • Save nporteschaikin/116752c7a79c5f9189d8 to your computer and use it in GitHub Desktop.
Save nporteschaikin/116752c7a79c5f9189d8 to your computer and use it in GitHub Desktop.
LESS example

HTML:

<div id="foo">
  <div>
  </div>
</div>

CSS:

#foo {
  background: red;
}
#foo div {
  background: blue;
}
#foo:hover {
  background: green;
}

LESS:

#foo {
  background: red;
  div {
    background: blue;
  }
  &:hover {
    background: green;
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment