Skip to content

Instantly share code, notes, and snippets.

@kawasako
Created August 26, 2013 12:35
Show Gist options
  • Save kawasako/6340979 to your computer and use it in GitHub Desktop.
Save kawasako/6340979 to your computer and use it in GitHub Desktop.
SCSS @extend :active
// Example
.hoge:active{
color: red;
}
.fuga {
@extend .hoge:active;
}
// Result
.fuga {
color: red;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment