css3 - How I can use Font Awesome as a stroke -


i need use fontawesome stroke use

-webkit-text-stroke: 1px #cc0000; -webkit-text-fill-color: #ffffff; 

but works webkit browsers only.

any other way make works other browsers firefox , ie +10

thinks

in article: adding stroke web text speak using text-shadow simulate -webkit-text-stroke option; other there no other options aware of.

h1 {    -webkit-text-stroke: 1px black;    color: white;    text-shadow:        3px 3px 0 #000,      -1px -1px 0 #000,         1px -1px 0 #000,       -1px 1px 0 #000,        1px 1px 0 #000; } 

from caniuse.com


Comments

Popular posts from this blog

cakephp - simple blog with croogo -

How to group boxplot outliers in gnuplot -

bash - Performing variable substitution in a string -