html - How to apply font anti-alias effects in CSS? -
this question has answer here:
- forcing anti-aliasing using css: myth? 17 answers
how can apply photoshop-like font anti-aliasing such crisp, sharp, strong, smooth in css?
are these supported browsers?
here go sir :-)
1
.myelement{ -webkit-font-smoothing: antialiased; }
2
.myelement{ -webkit-text-shadow: rgba(0,0,0,.01) 0 0 1px; }
update: (see duke)
.myelement{ text-shadow: rgba(0,0,0,.01) 0 0 1px; }
Comments
Post a Comment