I'm doing some mobile testing on browserstack and have begun looking at older devices. I'm getting a strange character encoding in android 2.x browsers - see below
I cannot figure out what would be causing this
Character encoding?
svgs' as background images? I assumed that if a property declaration isn't understood, that it would fallback or ignore it, for example.
.logo-dev {
background-image:url(/images/logos/header-logo-dev-white25px.png);
background-image:url(/images/logos/header-logo-dev-white.svg);
}
or is it a bug in the android emulator?
Has anyone else come across this issue
I found the issue, it was in my css reset
text-rendering: optimizeLegibility;
It has been removed from my code permanently