Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Created January 4, 2016 04:57
Show Gist options
  • Save AndyNovo/4e65f3aa0f3486f793ab to your computer and use it in GitHub Desktop.
Save AndyNovo/4e65f3aa0f3486f793ab to your computer and use it in GitHub Desktop.
Basic CSS Selectors
/**
* Basic CSS Selectors
*/
p {
background-color: #aaa;
}
.cool {
color: blue;
}
#short {
color: red;
}
.cool span {
background-color: black;
}
<!-- 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>
// alert('Hello world!');
{"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