So I tried:
body :not(.cc) { display: none; }
and various other things I found on here. (!important
, *
instead of body, ...)
I even tried it for a span-element with that class instead of the td-element.
Nothing worked.
<html>
<body>
<table><tr><td class="cc">text</td></tr></table>
Other text to not ne shown.
</body>
</html>
Edit: Please excuse I first put a misleading html-snippet here first. I removed that.
Edit2: I added "Other text to not be shown."