Home  >  Article  >  Web Front-end  >  怎么限制Google自动调整字体大小_html/css_WEB-ITnose

怎么限制Google自动调整字体大小_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:57:291073browse

Google默认的字体大小是12px,当样式表中font-size

最近在写代码玩的时候,我也碰到了

在FF和chrome中显示的效果如下(左边是FF,右边是google,我没有设置字体大小)

用text-size-adjust属性可以限制Google调整字体大小,我添加了如下的样式之后就正常了

   1: body{
   2:     font-size: 20px;
   3:     -webkit-text-size-adjust:none;
   4: }

Google的截图如下:

 

来源:http://www.ido321.com/652.html

 

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