Reverse Your Email with CSS and Prevent Spam
SPAM… Literally the most annoying word! When I used to work in IT Support, I would constantly get asked how to stop spam, and my reply would always be that you can’t! There is only so much software you can install / filters you can set going before you realise, the spam eventually reaches you anyway, fact! It’s just part or web life.
This is a cheeky little tip that will help preventing ‘spam bots’ getting hold of your email address. Next time you have to display your Email on your website, use the following code….
CSS:
span.test {
direction: rtl; unicode-bidi:bidi-override;
}
HTML:
<p><span class="test">moc.tset@tset</span></p>
The CSS reverses the direction of the text, so you write your email backwards, the CSS sorts it out so it displays fine on your website, but this way, ‘spam bots’ can’t read your email! woop!
@Dude – Sorry for delay in replying, I have been away! Thanks for pointing out that I have bad grammar! This is just a blog I do in my spare time so spelling etc isn’t the end of the world if one or too slip through so I won’t lose sleep over it. Thanks for taking the time to tell me tho lol. Also I noticed you didnt leave your website url?