Hover-over Text Swap

Trigger text swap upon hover-over. CSS.

by Ken Watanabe

HTML

<p>Give <a class="rich" href="mailto:[email protected]?Subject=DesignStudio%20Blog%20Inquiry" target="_top"><span>Rich</span></a>, <a class="ken" href="mailto:[email protected]?Subject=DesignStudio%20Blog%20Inquiry" target="_top"><span>Ken</span></a>, or <a class="pete" href="mailto:[email protected]?Subject=DesignStudio%20Blog%20Inquiry" target="_top"><span>Pete</span></a> a shout with any suggestions, edits, or deaththreats.</p>

CSS

a.rich:hover span {display:none}
a.rich:hover:before {content:"Rich@"}

a.ken:hover span {display:none}
a.ken:hover:before {content:"Ken@"}

a.pete:hover span {display:none}
a.pete:hover:before {content:"Peter@"}