Mobile browser Viewport parameters (web front-end design)

Mobile browser Viewport parameters (web front-end design)
Mobile browsers place web pages in a virtual "window" (viewport), which is usually wider than the screen. This way, there is no need to squeeze each web page into a small window (which would destroy the layout of web pages that are not optimized for mobile browsers). Users can view different parts of the web page by panning and zooming. The mobile version of Safari has recently introduced the viewport meta tag, which allows web developers to control the size and scaling of the viewport. Other mobile browsers also basically support it.
Viewport Basics

A commonly used viewport meta tag for a mobile-optimized page looks like this:

<meta name=”viewport” content=”width=device-width, initial-scale=1, maximum-scale=1″>

width: controls the size of the viewport. You can specify a value, such as 600, or a special value, such as device-width, which is the width of the device (in CSS pixels when scaled to 100%).
height: Corresponding to width, specifies the height.
initial-scale: The initial zoom ratio, that is, the zoom ratio when the page is loaded for the first time.
maximum-scale: The maximum scale to which the user is allowed to zoom.
minimum-scale: The minimum scale to which the user is allowed to zoom.
user-scalable: Whether the user can manually scale the image. Yes or No

<<:  Detailed explanation of the process of using GPU in Docker

>>:  CSS screen size adaptive implementation example

Recommend

Nginx uses reverse proxy to implement load balancing process analysis

Introduction Based on docker container and docker...

Serial and parallel operations in JavaScript

Table of contents 1. Introduction 2. es5 method 3...

Solutions to MySQL OOM (memory overflow)

OOM stands for "Out Of Memory", which m...

Problems with join queries and subqueries in MySQL

Table of contents Basic syntax for multi-table jo...

A collection of common uses of HTML meta tags

What is a mata tag The <meta> element provi...

A brief discussion on several ways to pass parameters in react routing

The first parameter passing method is dynamic rou...

How to build Jenkins+Maven+Git continuous integration environment on CentOS7

This article takes the deployment of Spring boot ...

How to use React slots

Table of contents need Core Idea Two ways to impl...

mysql splits a row of data into multiple rows based on commas

Table of contents Separation effect Command line ...

Detailed tutorial on installing mysql8.0.22 on Alibaba Cloud centos7

1. Download the MySQL installation package First ...

Implementation of k8s deployment of docker container

Environment: (docker, k8s cluster), continue with...

A detailed introduction to the netstat command in Linux

Table of contents 1. Introduction 2. Output Infor...

The difference between JS pre-parsing and variable promotion in web interview

Table of contents What is pre-analysis? The diffe...

Tutorial on installing Ceph distributed storage with yum under Centos7

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

Using CSS3 to create header animation effects

Netease Kanyouxi official website (http://kanyoux...