解决网页在手机端适配问题

0x00

我们开发的电脑端网页,大多数在手机端是不适配的。
我们可以通过html的meta标签来解决这个问题。
只需要在head中加入如下,即可解决大多数手机端的适配问题。

<meta name="viewport" content="width=device-width, initial-scale=1">

参考文章:https://www.runoob.com/w3cnote/viewport-deep-understanding.html
原文地址:https://www.cnblogs.com/Wuser/p/13280470.html