Created
January 4, 2016 04:57
-
-
Save AndyNovo/4e65f3aa0f3486f793ab to your computer and use it in GitHub Desktop.
Basic CSS Selectors
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
/** | |
* Basic CSS Selectors | |
*/ | |
p { | |
background-color: #aaa; | |
} | |
.cool { | |
color: blue; | |
} | |
#short { | |
color: red; | |
} | |
.cool span { | |
background-color: black; | |
} |
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
<!-- content to be placed inside <body>…</body> --> | |
<p>Hi there this is some text.</p> | |
<p class="cool">This is also some text.</p> | |
<p class="cool short" id="short"> This <span>text</span> contains a span.</p> |
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
// alert('Hello world!'); |
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