Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有几个文本输入字段,其中两个被禁用,它们在 PC 浏览器上看起来正确,但是当我在 iPad 上查看它时,文本的颜色并没有改变它的意思。
我在禁用字段上有这种风格:
input[disabled='disabled'] { color:#555; }
但 iPad 似乎并没有注意到这一点。
有任何想法吗?所有禁用的输入文本字段都会发生这种情况。
这个 safari 版本不支持你的 css 很遗憾你必须在你的领域使用额外的类,比如class="disabled"
class="disabled"
您可以尝试覆盖不透明度,它对我有用。
input:disabled { -webkit-text-fill-color: rgba(0, 0, 0, 1); -webkit-opacity: 1; }