css – 文本字段在safari中不工作

前端之家收集整理的这篇文章主要介绍了css – 文本字段在safari中不工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在线的在线eBay盈利预测计算器 here

我似乎无法让输入字段在safari和mobile Safari中工作。他们在FF&铬。我点击它们,但是当我输入时没有任何显示。我一直在搜索google,但似乎找不到任何线索。我想知道我是否在css中缺少某些东西。这是我输入字段的css:

input {
    width: 155px;
    padding-left: 5px;
    height: 24px;
    cursor: text;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 3px;
    Box-shadow: inset 1px 1px 2px black;
    -moz-Box-shadow: inset 1px 1px 2px black;
    -webkit-Box-shadow: inset 1px 1px 2px black;
    background-color: #F8FBEF;
 }

解决方法

你的问题在于calcstyle.css这里:
* { 
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

我不完全确定为什么用户选择:none;将阻止您键入输入,但删除此块修复它为我。

编辑

这是一个可能的解决方案:

选择除您的输入外的所有内容

*:not(input.field) {    
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
原文链接:https://www.f2er.com/css/219036.html

猜你在找的CSS相关文章