Last active
August 29, 2015 14:22
-
-
Save butchi/59de1bfa977f17dc926d to your computer and use it in GitHub Desktop.
:lang擬似クラスは便利 ref: http://qiita.com/butchi_y/items/334f2dd35a54fbbd116d
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
<!DOCTYPE html> | |
<html lang="ja"> | |
<head></head> | |
<body> | |
<div class="elm-1" lang="en"> | |
<p>Thanks, world!</p> | |
</div> | |
<div class="elm-2" lang="ja"> | |
<p>ありがとう世界!</p> | |
</div> | |
</body> | |
</html> |
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
p { | |
color: black; | |
[lang=en] & { | |
color: red; | |
} | |
} |
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
p { | |
color: black; | |
&:lang(ja) { | |
color: red; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment