Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/css/39.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/105.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Css iOS 3.2中webapp内部的乱码文本_Css_Ios_Webkit_Mobile Webkit_Ios3.0 - Fatal编程技术网

Css iOS 3.2中webapp内部的乱码文本

Css iOS 3.2中webapp内部的乱码文本,css,ios,webkit,mobile-webkit,ios3.0,Css,Ios,Webkit,Mobile Webkit,Ios3.0,我为iOS设备编写的Web应用程序出现问题。它只在iOS 3.x中出现 下面是我遇到的问题: 计算样式为: -webkit-appearance: none; -webkit-background-clip: padding-box; -webkit-border-horizontal-spacing: 2px; -webkit-border-vertical-spacing: 2px; -webkit-box-shadow: rgba(0, 0, 0, 0.199219) 0px 1px 4

我为iOS设备编写的Web应用程序出现问题。它只在iOS 3.x中出现

下面是我遇到的问题:

计算样式为:

-webkit-appearance: none;
-webkit-background-clip: padding-box;
-webkit-border-horizontal-spacing: 2px;
-webkit-border-vertical-spacing: 2px;
-webkit-box-shadow: rgba(0, 0, 0, 0.199219) 0px 1px 4px 0px inset;
-webkit-rtl-ordering: logical;
-webkit-user-select: text;
background-attachment: scroll;
background-clip: padding-box;
background-color: #F0F0F0;
background-image: none;
background-origin: padding-box;
border-bottom-color: #B3B3B3;
border-bottom-left-radius: 9px;
border-bottom-right-radius: 9px;
border-bottom-style: solid;
border-bottom-width: 1px;
border-collapse: collapse;
border-left-color: #B3B3B3;
border-left-style: solid;
border-left-width: 1px;
border-right-color: #B3B3B3;
border-right-style: solid;
border-right-width: 1px;
border-top-color: #B3B3B3;
border-top-left-radius: 9px;
border-top-right-radius: 9px;
border-top-style: solid;
border-top-width: 1px;
color: #333;
cursor: auto;
display: inline-block;
font-family: Helvetica, Arial, sans-serif;
font-size: 16px;
font-style: normal;
font-variant: normal;
font-weight: normal;
height: 22px;
letter-spacing: normal;
line-height: 22px;
margin-bottom: 2px;
margin-left: 0px;
margin-right: 0px;
margin-top: 2px;
padding-bottom: 6px;
padding-left: 6px;
padding-right: 6px;
padding-top: 6px;
text-align: auto;
text-indent: 0px;
text-shadow: white 0px 1px 0px;
text-transform: none;
width: 378px;
word-spacing: 0px;
这是表行中的正常输入字段


有什么想法吗?

Safari使用亚像素渲染来“放大”文本,就像雪豹一样,他们的标准“修复”不再有效。对于Safari 4/Snow Leopard,请使用文本阴影,对于其他所有内容,请在body元素上放置-webkit字体平滑,如下所示。
body{-webkit字体平滑:抗锯齿}

Safari使用亚像素渲染来“放大”文本,从Snow Leopard开始,他们的标准“修复”不再起作用。对于Safari 4/Snow Leopard,请使用文本阴影,对于其他所有内容,请在body元素上放置-webkit字体平滑,如下所示。
body{-webkit字体平滑:抗锯齿}

也许您可以使用

text-shadow: #333 0 0 0, white 0 1px 0;

第一个阴影用作凝结文本的“背景”。

也许您可以使用

text-shadow: #333 0 0 0, white 0 1px 0;

第一个阴影用作凝结文本的“背景”。

没有解决此问题。不管怎样,谢谢。我没有解决这个问题。无论如何,谢谢你。