I have been attempting to implement a transition effect on the font-size property. While it works perfectly on desktop browsers, I am facing issues with mobile browsers such as Android Chrome, iOS Chrome, and Safari, where the font-size transition appears to be less smooth.
Here is the CSS code:
.dummy-text{
font-size: 24px;
transition: font-size 0.5s linear;
}
You can find the fiddle showcasing this issue below:
https://jsfiddle.net/3y7zbv0c/1/
Could anyone provide guidance on how to achieve a smoother font-size transition on mobile device browsers?