
Form checkboxes styling lost in Firefox browser
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
Giải pháp được chọn
You have to remove width: 0; height: 0;. That's all.
Đọc câu trả lời này trong ngữ cảnh 👍 0Tất cả các câu trả lời (5)
Did you test it in another browser? It looks similar.
It's because you have:
form input[type="checkbox"] { width: 0; height: 0; }
It's working correctly on safari & chrome and even IE. See attached.
attachment
Added -moz-appearance: none; and no success
Giải pháp được chọn
You have to remove width: 0; height: 0;. That's all.