Reputation: 744
I'm having an issue where safari is not rendering a complete text-shadow on a custom glyphicon like chrome or ff does. I attach an image of the button.
Do you know if there's any known bug or anything related to that?
Thanks a lot!
Upd: Happens in Safari 6.1.4, not in the new version 7.0.4, but anyway I have to fix that!
Upvotes: 2
Views: 2854
Reputation: 74
I got the same problem and found an article what mentioned a very easy solution: use RGB code instead of hex color code.
Example:
.selector { text-shadow: 0 0 3px rgb(91,91,91); }
Upvotes: 0
Reputation: 86
In Safari it simply takes webkit. But still if it creates problem then please try with the below mentioned css.
Text Shadow in Safari
.selector {
text-shadow: #666666 5px 5px 5px; /* Just an example */
}
Please try providing the color first the dimensions and check whether it helps you or not.
Cheers :)
Upvotes: 0