Last active
March 30, 2016 03:26
-
-
Save machida/eb6675e5689f7a988727249c1981392a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.tabs__item | |
width: 100px | |
height: 100px | |
background-color: black | |
&--active | |
// もう一度ベタ書きする例 | |
width: 100px | |
height: 100px | |
background-color: red | |
&--active | |
// @extendを使った例 | |
@extend .tabs__item | |
background-color: red | |
&.is-active | |
// 複数classの例 | |
background-color: red | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment