Why cannot change checkbox color whatever I do?

前端 未结 14 2297
孤城傲影
孤城傲影 2020-11-28 08:54

I try to style checkbox background color, but it won\'t change whatever I do. I am using firefox 29 latest.

Is there some rule changes in css or may be in the browse

14条回答
  •  生来不讨喜
    2020-11-28 09:12

    Late but as a note: after upgrading Chrome to v/81, all check boxes & radio buttons turned blue. So here is a dead simple solution if you ain't okay with blue but with grayscale;

    input[type='checkbox'], input[type='radio'] { filter: grayscale(1) }
    

    See more on MDN:
    https://developer.mozilla.org/en-US/docs/Web/CSS/filter
    https://developer.mozilla.org/en-US/docs/Web/CSS/filter-function/grayscale

提交回复
热议问题