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.
我的 html 页面中有一个带有 css 的文本字段
#textField { background-color: #000000; color: #ffffff; }
因此显示一个带有黑色背景颜色和白色文本的文本字段。这在所有桌面和 iPad 浏览器中都可以正常工作。
但在 Android 默认浏览器中,单击文本字段时,背景颜色变为白色,文本颜色变为黑色。
请提及如何覆盖它。提前致谢。
请在您的 css 中包含以下代码,以避免在 android 浏览器中覆盖背景颜色
#textField { background-color: #000000; color: #ffffff; -webkit-user-modify: read-write-plaintext-only; }