Safari Spacer Hack
If this text is green, the browser has applied the rule.
Note: this hack used to hide CSS from Safari (hence the name). Safari build 73 fixed the bug that this hack exploited. To hide CSS from Safari build 73, try the Escape Hack.
Technique:
div.test {color:green;}
div[class~=test] {color:inherit;}
div[class ~=test] {color:green;}
Adapted from David Baron's CSS tests
Back to CSS hacks