Warning: file_get_contents(/data/phpspider/zhask/data//catemap/1/php/232.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/html/74.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Php 为什么我在Opera Mobile中打开网页时会放大?_Php_Html_Mobile_Opera Mini_Opera Mobile - Fatal编程技术网

Php 为什么我在Opera Mobile中打开网页时会放大?

Php 为什么我在Opera Mobile中打开网页时会放大?,php,html,mobile,opera-mini,opera-mobile,Php,Html,Mobile,Opera Mini,Opera Mobile,我正在开发网页的移动版本。我正在测试一款带有两个浏览器的Symbian手机。默认浏览器工作正常,但Opera Mobile有问题 每次加载页面时,都会加载放大的页面,而不是适合屏幕。这甚至发生在这样一个简单的页面中: <?php echo "<p>Guys I am developing a mobile version web pages, I am testing with a symbian phone with two browsers.

我正在开发网页的移动版本。我正在测试一款带有两个浏览器的Symbian手机。默认浏览器工作正常,但Opera Mobile有问题

每次加载页面时,都会加载放大的页面,而不是适合屏幕。这甚至发生在这样一个简单的页面中:

    <?php
        echo    "<p>Guys I am developing a mobile version 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 Mibile, each time it loads a page a page that is zoomed in - instead of loading a page that just fits the screan. even a simple page like this one</P>
                <p>Is there anything i should include in the in my code to tell it to load a page that needs not to be zoomed. Will greatly apreciated, have spend almost the whole day on google?</p>";
    ?>

在我加载页面时,是否有办法使页面适合屏幕,而不是放大页面

任何帮助都将不胜感激。

将此添加到您的
元素中:


同侧眼线


thanx再次注意到,我在这个平台上还是新手
<html>
    <head>
        <meta content='width=device-width, initial-scale=1, maximum-scale=1' name='viewport' />
    </head>
    <body>
        <p>Lorem ipsum ...</p>
    </body>
</html>