Skip to content

Instantly share code, notes, and snippets.

@caleb-vear
Created December 7, 2011 01:03
Show Gist options
  • Save caleb-vear/1440893 to your computer and use it in GitHub Desktop.
Save caleb-vear/1440893 to your computer and use it in GitHub Desktop.
:not test
<html>
<head>
<style>
p:not(.classy) { color: red; }
:not(p) { color: green; }
div { color: black; }
</style>
</head>
<body>
<div>
<p>Should be red.</p>
<p class="classy">Should be black.</p>
<span>Should be green<span>
</div>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment