-webkit-text-size-adjust:没有似乎没有工作 [英] -webkit-text-size-adjust: none doesn't seem to be working

查看:186
本文介绍了-webkit-text-size-adjust:没有似乎没有工作的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在此帖子中遇到了相同的问题(并已解决)。然而,提供的解决方案不适合我。我试过两个 -webkit-text-size-adjust:none < meta name =viewportcontent =width = device-width; initial-scale = 1.0; maximum-scale = 1.0; user-scalable = 0; />

I have the same issue that is asked (and resolved) in this post. However, the solution(s) offered doesn't work for me. I tried both -webkit-text-size-adjust: none and <meta name="viewport" content="width=device-width; initial-scale=1.0; maximum-scale=1.0; user-scalable=0;" /> to no avail.

这是一个简单的HTML页面,只有文本

It is a simple HTML page that is text-only

<!DOCTYPE html>

<html>
<head>
<link href="style.css" rel="stylesheet">     
<title>Pastrami fugiat pork tail ut</title>
</head>

<body bgcolor="#000000" link="#FFFFFF" vlink="#FFFF00">

    <h1>Pastrami fugiat pork tail ut</h1>
    <p>Pancetta bresaola ham, brisket short ribs tri-tip sed cillum turkey pork loin corned beef venison tail.</p>

</body>
</html>

CSS

html
{
    -webkit-text-size-adjust: none;
}

@font-face{
    font-family:"Fertigo";
    src: url(Fertigo.otf) format("opentype");
}

body {
    padding:0;
    margin:1cm;
    font-family:"Fertigo", "Georgia";
    font-size:56px;
    line-height:1.5em;
    color:#FFFFFF;
    text-align:left;
    text-decoration:none;
    padding: 0px;
}

h1 {
    font-family:"Fertigo", "Helvetica";
    color:#FFFFFF;
    text-decoration:none;
    font-size:1.25em;
    font-weight:normal;
    margin:0px;
    padding:5px 0px 5px 5px;
    line-height: 1.5em;
}

h4 {
    font-family:"Courier New", "Georgia";
    font-size:1em;
    color:#FFFFFF;
    margin:0px;
    padding:0px;
    font-weight:normal;
    line-height: 1.5em;
}


推荐答案

身体和每个元素,并用标准字体首先测试它:

Try putting your webkit in the body and to every element within body and test it with standard font first like:

body * {
    margin:1cm;
    font-family:"Georgia";
    font-size:56px;
    line-height:1.5em;
    color:#FFFFFF;
    text-align:left;
    text-decoration:none;
    padding: 0px;
    -webkit-text-size-adjust: none;
}

这篇关于-webkit-text-size-adjust:没有似乎没有工作的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆