I’m working on an app now for ipads and tablet size screens.
Samsung tablet is 1256h x 800w
iPad 1673h x 1280w
To make my life easier to make the app run on both devices, is it possible somewhere in meta tags to scale the viewport?
I played with this
<meta name='viewport' content='width=device-width, initial-scale=1, user-scalable=no viewport-fit=contain' />
initial-scale only zoomed the page, taking part of the intended window off screen.
Is there a balance of width and scale I need?
Any tips, greatly appreciated.