Is there a known issue using % values in border radius on Android browsers?
I notice that when I use:
.element {
-webkit-border-radius: 10px;
-moz-border-radius: 10px;
border-radius: 10px;
}
The border radius seems to work on all mobile browsers, but when I use:
.element {
-webkit-border-radius: 50%;
-moz-border-radius: 50%;
border-radius: 50%;
}
The border radius does not apply on Android browsers.
Yes there is: check here, and click on known issues.
Here's what it says:
What are you using the percentage value for? Please tell us, so we can further help you.
Now, since you are using it to make circles, there's a dirty hack you can use:
That should work fine.