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

How to use Node.js to determine whether a png image has transparent pixels

background PNG images take up more storage space ...

Implementation of vue-nuxt login authentication

Table of contents introduce Link start Continue t...

Vue Beginner's Guide: Environment Building and Getting Started

Table of contents Initial Vue Building a Vue deve...

Detailed explanation of Mysql transaction isolation level read commit

View MySQL transaction isolation level mysql> ...

html base url tag

Its function is to set a global style. Then your s...

Using Docker to create static website applications (multiple ways)

There are many servers that can host static websi...

Summary of MySQL lock related knowledge

Locks in MySQL Locks are a means to resolve resou...

Detailed explanation of the basic usage of SSH's ssh-keygen command

SSH public key authentication is one of the SSH a...

How to install mysql on centos and set up remote access

1. Download the mysql repo source $ wget http://r...

Tutorial on installing mysql5.7.23 on Ubuntu 18.04

This article shares with you the specific method ...

In-depth explanation of modes and environment variables in Vue CLI

Preface In the development of actual projects, we...