In the process of creating an Apache Cordova app using the Ionic framework and working with Phonegap Build, I encountered a challenge. The main page of my app features rows of icons that appear like this:
https://i.sstatic.net/7LE7r.png
However, there is a problem on Android 4.4.x and older versions where the icons are misplaced. After some investigation, I discovered that my
transform: translate(-50%, -50%);
does not function properly on these outdated devices. It appears that others have faced a similar issue as shown in this thread.
How can I achieve the desired transform effect consistently across all devices, webviews, and browsers?