我在使用的CSS文件中有很多东西,这就是为什么我的复选框样式不知怎么搞砸了。我一直在尽力让它看起来正常,但我运气不好。有什么方法可以将复选框样式重置为默认样式吗?我在IE中做了一个F12,并将其作为样式。
"ms-crm复选框"是我正在使用的类。
https://i.stack.imgur.com/bKnXR.png
input[type="checkbox"] {
-webkit-appearance: checkbox !important;
-moz-appearance: checkbox !important;
-ms-appearance: checkbox !important;
-o-appearance: checkbox !important;
appearance: checkbox !important;
}
您在input标记上添加了样式,复选框是一个输入,请考虑在input.someclass
或input[type="text"]
上添加样式,而不是在所有输入元素上添加样式您还可以在所有复选框元素上添加样式
input[type="checkbox"] {
/* styles */
}