Created
May 21, 2012 16:17
-
-
Save tyv/2763089 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
/* самый распространенный: все потомки */ | |
.parent .child | |
{ | |
aborder: 1px solid red; | |
} | |
/* | |
все селекторы можно уточнять | |
именами элементов ol.parent li.child | |
*/ | |
ol.parent li.child | |
{ | |
aborder: 1px solid red; | |
} | |
/* только child */ | |
.parent > .child | |
{ | |
aborder: 1px solid red; | |
} | |
/* следующий за */ | |
.child04 + .child | |
{ | |
aborder: 1px solid red; | |
} | |
/* после */ | |
.child01 ~ .child | |
{ | |
aborder: 1px solid 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
<ol class="parent"> | |
<li class="child child01">child</li> | |
<li class="child child02"> | |
child | |
<div class="descendant">descendant</div> | |
<div class="child">fake child</div> | |
<ul> | |
<li>sublist</li> | |
<li>sublist</li> | |
</ul> | |
</li> | |
<li class="child child03">child</li> | |
<li class="child child04">child</li> | |
<li class="child child05">child</li> | |
<li class="child child06">child</li> | |
<li class="child child07">child</li> | |
<li class="child child08">child</li> | |
<li class="child child09">child</li> | |
<li class="child child10">child</li> | |
<li class="child child11">child</li> | |
</ol> |
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
{"view":"separate","fontsize":"100","seethrough":"","prefixfree":"1","page":"all"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment