Skip to content

Instantly share code, notes, and snippets.

@iiic
Created October 9, 2012 09:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save iiic/3857610 to your computer and use it in GitHub Desktop.
Save iiic/3857610 to your computer and use it in GitHub Desktop.
:not pseudo class
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<style>
div[class]{background:red}
div:not([class]){background:green}
</style>
</head>
<body>
<div class="xxx">prvni</div>
<div>druhy</div>
<div class="xxx">treti</div>
@iiic
Copy link
Author

iiic commented Oct 9, 2012

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment