HTML IPhone HTML视口元标记

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML IPhone HTML视口元标记相关的知识,希望对你有一定的参考价值。

<meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0;">

php 添加视口元标记。

<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Add Viewport meta tag for mobile browsers (requires HTML5 theme support)
add_theme_support( 'genesis-responsive-viewport' );
<?php
//* Do NOT include the opening php tag shown above. Copy the code shown below.

//* Add custom Viewport meta tag for mobile browsers
add_action( 'genesis_meta', 'sp_viewport_meta_tag' );
function sp_viewport_meta_tag() {
	echo '<meta name="viewport" content="width=device-width, initial-scale=1.0"/>';
}

以上是关于HTML IPhone HTML视口元标记的主要内容,如果未能解决你的问题,请参考以下文章

html Responsivní元标记视口

HTML 页面未在 iPhone/iPad 上纵向调整大小

所有移动浏览器的完整网页和禁用缩放视口元标记

为什么视口元标记不能按预期工作

HTML 元标记 - 为iPhone配置您的Web

视口元标记真的有必要吗?