Created
January 15, 2013 13:22
-
-
Save paulrouget/4538594 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
/* More pseudo classes */ | |
input:disabled { ... } | |
input:invalid { ... } | |
/* Matches-Any Pseudo-class */ | |
:matches( h1, h2 ) > p { ... } | |
:matches( h1, h2 ) > :matches( p, span ) { ... } | |
/* subject selector */ | |
$ul > li.important:hover {...} | |
$p + p { ... } | |
/* scoped style */ | |
<div> | |
<div> /* --------------------------- */ | |
<style scoped> | |
div { border: 1px solid red; } | |
</style> | |
<div>foo</div> | |
</div> /* -------------------------- */ | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment