Why the font size won't change with browser zoom in?

前端 未结 3 1159
隐瞒了意图╮
隐瞒了意图╮ 2020-12-15 22:32

In most of websites, while I change the zoom level of browsers, the font size will also increase and help user to see them. For some reasons, that just won\'t work on my new

相关标签:
3条回答
  • 2020-12-15 22:49

    Fonts using a specific pixel size are not relative (along with several others). Zooming changes that relative information.

    From http://www.westciv.com/style_master/academy/css_tutorial/properties/values.html

    Name        Abbrev. Explanation                             Relative?
    em          em      The height of a font                    yes
    ex          ex      The height of the letter x in a font    yes
    pica        pc      1 pica is 12 points                     no
    point       pt      1/72 of an inch                         no
    pixel       px      One dot on a screen                     no
    millimeter  mm      Printing unit                           no
    centimeter  cm      Printing unit                           no
    inch        in      Printing unit                           no
    
    0 讨论(0)
  • 2020-12-15 22:58

    If you're using a fixed-point width for your font-size settings (e.g.: pixels), then your font size will remain unchanged when the user zooms. If you want the font to enlarge or diminish when the user zooms in/out, then consider using em as your unit (1 em = 100% of the default font size on the user's machine).

    0 讨论(0)
  • 2020-12-15 23:12

    The problem is that you have set -webkit-text-size-adjust: none; for the body in layout.css. Changing it to -webkit-text-size-adjust: auto; allows the zooming of the fonts along with the page.

    Edit: Corrected the CSS. Should be auto not 0

    0 讨论(0)
提交回复
热议问题