/ Published in: CSS
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
/* Looks like ass */ body { text-shadow: 0px 0px 1px rgba(0,0,0,0); } /* works */ body { -webkit-text-stroke: 1px transparent; } /* better */ body { text-shadow: rgba(0,0,0,.01) 0 0 1px; }
URL: https://github.com/paulirish/html5-boilerplate/issues/598