- CSS selector, is no descendant of
- <body>
- <div class="todeep">
- <img>
- </div>
- <div>
- <img>
- <div>
- <img>
- <div class="todeep">
- <img>
- <div>
- <img />
- </div>
- </div>
- </div>
- </div>
- </body>
- img { background-color: blue; width: 20px; height: 20px; }
- *:not(.todeep) img { background-color: red; }
- img { background-color: red; width: 20px; height: 20px; }
- .todeep img { background-color: blue; }