Created
August 19, 2013 18:45
-
-
Save andershaig/6272594 to your computer and use it in GitHub Desktop.
If the following HTML and CSS were applied to the page, what color would the text be displayed as?
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
| .foo span { color: purple; } | |
| #bar { color: orange; } | |
| .foo { color: green; } |
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 class="foo"> | |
| <span id="bar"> | |
| Some sample text | |
| </span> | |
| </div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment