Why doesn't the following work:
HTML:
<aside class="vcard">
<a href="mailto:info@cepods.com" class"email">info@company.com</a>
<a href="tel:7865201412" class="tel">436-560-1487</a>
</aside>
CSS:
.vcard a.email:before {
content: "Contact us: ";
}
Is it not possible to add content with this method? I've had the issues several times, is the way of selecting not correct?