Solution to the problem of large font size on iPhone devices in wap pages

Solution to the problem of large font size on iPhone devices in wap pages
If you don't want to use javascript control, then try the following method

Safari browser is based on the webkit kernel, so this sentence is easy to understand from a semantic point of view

Copy code
The code is as follows:

@media screen and (max-device-width: 640px){body{-webkit-text-size-adjust:none;}}

body can be replaced with any container you want

The screen width of iPhone 4 is 640px, so if you have iPhone 5, the screen is 800PX, and the corresponding value of the style can also be modified.

<<:  Teach you how to install docker on windows 10 home edition

>>:  Summary of commonly used tags in HTML (must read)

Recommend

MySQL character set garbled characters and solutions

Preface A character set is a set of symbols and e...

How to generate mysql primary key id (self-increment, unique and irregular)

Table of contents 1. Use the uuid function to gen...

Vue implements a visual drag page editor

Table of contents Drag and drop implementation Dr...

Example code for implementing beautiful clock animation effects with CSS

I'm looking for a job!!! Advance preparation:...

How to fix abnormal startup of mysql5.7.21

A colleague reported that a MySQL instance could ...

Pure js to achieve typewriter effect

This article example shares the specific code of ...

How to let https website send referrer https and http jump referrer

This article describes a proposal for a metadata ...

Analysis of MySQL data backup and recovery implementation methods

This article uses examples to describe how to bac...

Solution to docker suddenly not being accessible from the external network

According to the methods of the masters, the caus...

Detailed steps to install MySQL 5.6 X64 version under Linux

environment: 1. CentOS6.5 X64 2.mysql-5.6.34-linu...

JS object copying (deep copy and shallow copy)

Table of contents 1. Shallow copy 1. Object.assig...

mysql startup failure problem and scenario analysis

1. One-stop solution 1. Problem analysis and loca...

Do you know how to use vue-cropper to crop pictures in vue?

Table of contents 1. Installation: 2. Use: 3. Bui...

WeChat applet learning notes: page configuration and routing

I have been studying and reviewing the developmen...

Detailed introduction to nobody user and nologin in Unix/Linux system

What is the nobody user in Unix/Linux systems? 1....