Home  >  Article  >  Web Front-end  >  禁止浏览器缩放网页的HTML代码_html/css_WEB-ITnose

禁止浏览器缩放网页的HTML代码_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:48:282164browse

禁止浏览器缩放网页的HTML代码

html5默认允许用户缩放页面,如果需要禁止缩放,我们需要将user-scalabel=0设置下,具体代码如下:

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

注意:meta在head里。

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