samedi 27 avril 2019

Remove required checkbox border in Firefox

If a checkbox is required, Firefox will apply a red border to it, even if the form has not yet been submitted. How can I remove or prevent this border?

<input type='checkbox' required />

enter image description here

I tried applying the following styles, none of which worked. Now I'm out of ideas :/

input[type=checkbox]:invalid {
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
}




Aucun commentaire:

Enregistrer un commentaire