In my version there was a version:
input { -webkit-appearance: none; }
In some versions of the webkit browser, you may also find that border-radius is still in place. Reset with the following:
input { -webkit-border-radius:0; border-radius:0; }
This can be extended by applying the form webkite to all form components, such as input , select , button or textarea .
In relation to the original question, you will not use the value "none" when clearing the element based css element. Also keep in mind that this hides checkboxes in Chrome, so maybe use something like input[type=text] or input:not([type=checkbox]), input:not([type=radio]) instead input:not([type=checkbox]), input:not([type=radio])
marksyzm Oct 24 '11 at 17:04 2011-10-24 17:04
source share