Skip to content

Instantly share code, notes, and snippets.

@jjmartucci
Created November 5, 2015 14:31
Show Gist options
  • Save jjmartucci/752d1be204fb241ff48a to your computer and use it in GitHub Desktop.
Save jjmartucci/752d1be204fb241ff48a to your computer and use it in GitHub Desktop.
BEM Nested Selectors for Hover State
.photo-of-the-day {
$root: &;
&--title{
font-size: 16px;
}
&:hover{
#{$root}--title {
text-decoration: underline;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment