Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Learn More

Form checkboxes styling lost in Firefox browser

  • 5 Antworten
  • 1 hat dieses Problem
  • 75 Aufrufe
  • Letzte Antwort von TyDraniu

more options

Hi,

I made CSS styling for form checkboxes that won't appear in Firefox browser. Could you please how can I get my stylings revealed in Firefox?

URL: https://www.almatalent.fi/tilaa-koulutusten-asiakaskirje/

Screenshot provided

Hi, I made CSS styling for form checkboxes that won't appear in Firefox browser. Could you please how can I get my stylings revealed in Firefox? URL: https://www.almatalent.fi/tilaa-koulutusten-asiakaskirje/ Screenshot provided
Angefügte Screenshots

Ausgewählte Lösung

You have to remove width: 0; height: 0;. That's all.

Diese Antwort im Kontext lesen 👍 0

Alle Antworten (5)

more options

Did you test it in another browser? It looks similar.

It's because you have:

form input[type="checkbox"] {
 width: 0;
 height: 0;
}
more options

It's working correctly on safari & chrome and even IE. See attached.

more options

Added -moz-appearance: none; and no success

more options

Ausgewählte Lösung

You have to remove width: 0; height: 0;. That's all.