Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.52 KB  |  hits: 16  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. CSS selector, is no descendant of
  2. <body>
  3.    <div class="todeep">
  4.        <img>
  5.    </div>
  6.    <div>
  7.        <img>
  8.        <div>
  9.            <img>
  10.            <div class="todeep">
  11.                <img>
  12.                <div>
  13.                    <img />
  14.                </div>
  15.            </div>
  16.        </div>
  17.    </div>
  18. </body>
  19.        
  20. img { background-color: blue; width: 20px; height: 20px; }
  21. *:not(.todeep) img { background-color: red; }
  22.        
  23. img { background-color: red; width: 20px; height: 20px; }
  24. .todeep img { background-color: blue; }