在移动设备上,当我点击联系表单上的提交时,按钮的背景颜色会变为与我在CSS中设置的颜色不同的颜色。我尝试过使用-appearance:none;并将bg颜色设置为!important。在那一刻我按钮的css是这样的:
button[type='submit']:active,button[type='submit']:focus,input[type='submit']:focus
{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background: #f4f4f4 !important;
}
这似乎没有任何效果。任何帮助或指示将非常感激。