Created
May 21, 2012 13:56
-
-
Save tyv/2762451 to your computer and use it in GitHub Desktop.
2 id невалидно
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
body | |
{ | |
font-size: 24px | |
} | |
#myid | |
{ | |
color: red; | |
} | |
.myclass | |
{ | |
color: green /* применился ко всем */ | |
} | |
#myid2.myclass | |
{ | |
font-weight: bold; | |
} | |
.myclass.mysuperclass | |
{ | |
text-decoration: underline; | |
} | |
#myid3.myclass.mysuperclass | |
{ | |
font-style: italic; | |
} | |
/* 2 id невалидно */ | |
#myid4#mysuperid.myclass.mysuperclass | |
{ | |
background: yellow; | |
} |
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
<div id="myid">текст</div> | |
<div class="myclass">текст</div> | |
<div id="myid2" class="myclass">текст</div> | |
<div id="myid3" class="myclass mysuperclass">текст</div> | |
<div id="myid4 mysupperid" class="myclass mysuperclass">текст</div> |
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