Skip to content Skip to sidebar Skip to footer

Viewport Tag Not Working On Chrome

I'm using the device metrics override in Chrome to test a responsive website for smaller resolutions (320x480 in this case). My viewport meta tag is not making any effect on the pa

Solution 1:

Try this in place of your meta tag. Good luck.

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no, target-densityDpi=device-dpi" />

Post a Comment for "Viewport Tag Not Working On Chrome"