Struggling to create a responsive layout for a web app, specifically dealing with rendering issues on mobile webkit browsers. The floating elements are shrinking in an unpredictable way, causing problems on Chrome and Safari for Android and iOS devices. Layouts seem fine on desktop browsers, Firefox, and Opera on Android.
Tried various CSS attributes like tables, boxes, floats, flex-boxes, and -webkit-boxes, but all result in headers and footers appearing too small. Unfortunately, I can't control the viewport meta-tag as this project is on Google Script. Even adding
<meta name="viewport" content="width=device-width, initial-scale=1">
tag locally did not solve the issue.Has anyone encountered this problem before and found a solution? Any suggestions would be greatly appreciated! Thank you.