Are psuedo-elements good for obfuscating e.g. email addresses?
I've been using this in my site for years and I barely get any spam, but I'm not a web dev. My understanding is that the text doesn't get rendered into the DOM, so screenreaders and hopefully scrapers pass over it. The other techniques I've seen ultimately still render into the DOM.
<style>#email::before{content:"me@"}#email::after{content:"example.com"}</style>
<p>Email: <span id=email></span></p>