Skip to content

Instantly share code, notes, and snippets.

@butchi
Last active August 29, 2015 14:22
Show Gist options
  • Save butchi/59de1bfa977f17dc926d to your computer and use it in GitHub Desktop.
Save butchi/59de1bfa977f17dc926d to your computer and use it in GitHub Desktop.
:lang擬似クラスは便利 ref: http://qiita.com/butchi_y/items/334f2dd35a54fbbd116d
<!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>
p {
color: black;
[lang=en] & {
color: red;
}
}
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