Created
April 1, 2015 20:02
-
-
Save nmartin867/645a527ed664f3a6229b to your computer and use it in GitHub Desktop.
qEwXqx
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
| <html> | |
| <body> | |
| <div class="top-content"> | |
| <span class="content-text">I'm on top!</span> | |
| </div> | |
| <div class="bottom-content"> | |
| <span class="content-text">I'm on the bottom!</span> | |
| </div> | |
| </body> | |
| </html> |
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
| /* | |
| Make all spans with class "content-text" bold | |
| */ | |
| span.content-text{ | |
| font-weight:bold; | |
| } | |
| /* | |
| Highlight span text that has class "content-text" AND is a child of div with class "top-content" | |
| */ | |
| div.top-content span.content-text{ | |
| color: red; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment