CSS - 按钮的背景颜色在移动设备上不会改变

标签 css button mobile submit

enter image description here

左边是电脑端,右边是手机端。 我不希望手机有渐变背景或圆边。

input {
    margin: 0px;
    font-size: 20px;
    border: 0px;
    background: green;
    color: lime;
    height: 40px;
    width: 123px;
    padding: 0px;
}

最佳答案

您可以将属性“-webkit-appearance”设置为“none”:

input {
    -webkit-appearance: none;
}

关于CSS - 按钮的背景颜色在移动设备上不会改变,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18038478/

相关文章:

c# - 谁能告诉我在应用 CSS 时哪里出错了

html - CSS 和 HTML 根据链接的值和类型发生变化

button - 在 SilverStripe 中向 CMS 添加按钮

java - 是否可以在 Xamarin 中检索存储在 Java 中的 Android 共享首选项

javascript - 触摸两个 dom 元素上的事件?

javascript - JS : How to detect if location is disabled on a mobile device?

html - 在 CSS 网格中居中

javascript - 嵌套列表 css 问题

php - 360 度网格——以奇数条记录结束行

python - 如何有效地向 tkinter 框架添加大量按钮?