I have a canvas element with a width of 608 pixels, and I'm trying to enlarge the image of the iPhone and iPad so that it fills the screen.
I experimented with different values, but none of them work on both devices. Here's what I have right now (works on iPhone, but looks small on iPad):
<meta name="viewport" content="width=608; initial-scale=1.0; maximum-scale=1.0; user-scalable=no;" />
How can i achieve this?
source
share