Font-size issues comparing chrome and Firefox

后端 未结 7 796
清酒与你
清酒与你 2020-11-27 06:07

I built a site and the problem is, chrome display font-size 1px bigger than Firefox. I tried several ways to match the font-size, specified it in px, in % set t

7条回答
  •  轻奢々
    轻奢々 (楼主)
    2020-11-27 06:22

    if you have web page to print then

    add css

    
    

    in css file

    body {
        padding: 3px;
        margin: 0.5px;
        background-position: center;
        color: #000000;
        background: #ffffff;
        font-family: Arial;
        font-size: 13pt;
    }
    

    this works for me

提交回复
热议问题