Meta viewport makes the web page full screen display control on iPhone

Meta viewport makes the web page full screen display control on iPhone
In desperation, I suddenly thought, how is the Sina touch screen version that I often visit made? Open Opera,
Looking at the source code, I found meta viewport in the HTML header. Could this be the one that’s playing a role?
I tried it and it filled the screen. By the way, I checked the function of this label and recorded it for future use.
meta viewport
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>

in:
width – the width of the viewport
height – the height of the viewport
initial-scale – The initial scale
minimum-scale – The minimum scale to which the user is allowed to zoom
maximum-scale – The maximum scale to which the user is allowed to zoom
user-scalable – Whether the user can manually scale

<<:  React dva implementation code

>>:  Summary of MySQL data migration

Recommend

Tutorial diagram of installing mysql8.0.18 under linux (Centos7)

1 Get the installation resource package mysql-8.0...

Summary of changes in the use of axios in vue3 study notes

Table of contents 1. Basic use of axio 2. How to ...

Tutorial on installing Ceph distributed storage with yum under Centos7

Table of contents Preface Configure yum source, e...

Vue3 AST parser-source code analysis

Table of contents 1. Generate AST abstract syntax...

In-depth understanding of JavaScript event execution mechanism

Table of contents Preface The principle of browse...

Add a floating prompt for the header icon in the ElementUI table

This article mainly introduces how to add floatin...

How to use mysql index merge

Index merging is an intelligent algorithm provide...

MySQL UNION operator basic knowledge points

MySQL UNION Operator This tutorial introduces the...

JavaScript anti-shake and throttling explained

Table of contents Stabilization Throttling Summar...

MySQL 5.7 mysql command line client usage command details

MySQL 5.7 MySQL command line client using command...

Implementation of element shuttle frame performance optimization

Table of contents background Solution New Questio...

MySQL optimization strategy (recommended)

In summary: 1. Consider performance when designin...

Getting Started with CSS3 Animation in 10 Minutes

Introduction Animation allows you to easily imple...

MySQL performance optimization: how to use indexes efficiently and correctly

Practice is the only way to test the truth. This ...