Home  >  Article  >  Web Front-end  >  How to realize mobile adaptive web page size

How to realize mobile adaptive web page size

php中世界最好的语言
php中世界最好的语言Original
2018-02-06 09:35:289728browse

This time I will bring you how to realize the size of mobile phone adaptive web pages and what are the precautions. Here are practical cases, let’s take a look.

For work needs, I need to make a web page effect that is adaptive to mobile phones. I finally got it, share it and record it first!

In fact, the main thing is to change the HTML page declaration:

Add the following code to the web page, and it will display normally:

<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0"/>

Explanation:
width - The width of the viewport
height - The height of the viewport
initial-scale - The initial zoom ratio
minimum-scale - The minimum ratio that the user is allowed to zoom to
maximum-scale - The maximum ratio that the user is allowed to zoom to
user-scalable - whether the user can manually zoom
If you want to simplify it, you can change the above code to the following code, the effect is the same:

<meta content="width=device-width,user-scalable=no" name="viewport">

Finally, don’t set too large a specific width attribute . For example, if you set the width attribute of the Body to 1000px on the web page, this will definitely not work, but you can set it to 90%, which is Screenadaptive.
PS: I made an effect page, which can be displayed normally on a mobile phone.

I believe you have mastered the method after reading these cases. For more exciting content, please pay attention to other related articles on the php Chinese website !

Related reading:

How to use the hr horizontal line in HTML

How to convert textarea text into html That is, carriage return and line feed

How to use iframe to embed other web pages in the current web page

The above is the detailed content of How to realize mobile adaptive web page size. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn