I am using that simple CSS in an Android WebView.
.rounded{
text-align: center;
border-radius: 25px;
border: 2px solid #FFFF014F;
}
It is working totally OK with an API 28 device. But with a 22 API device I am not getting the same result (The border is not being shown at all).
These are the two devices I am using (Both devices have the same resolution):
I suppose the css properties are being interpreted different depeding on the WebView or API version. (I am not sure about that)
I would like to have one single css file working the same way all over the Android versions. So:
- Is there a way to correct that?
- Is there a documentation where I could find what css properties I can use depending on the API version?
