Skip to content Skip to sidebar Skip to footer

Why Are My Web Pages Zoomed In When I Open Them In Opera Mobile?

I am developing a mobile version of web pages. I am testing with a Symbian phone with two browsers. The default browser is working properly but I am having problem with Opera Mobil

Solution 1:

Add this in your <head> element: <meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport' />

<html>
    <head>
        <meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport' />
    </head>
    <body>
        <p>Lorem ipsum ...</p>
    </body>
</html>

Post a Comment for "Why Are My Web Pages Zoomed In When I Open Them In Opera Mobile?"