How to style a checkbox using CSS

前端 未结 30 3418
日久生厌
日久生厌 2020-11-21 04:26

I am trying to style a checkbox using the following:

30条回答
  •  感情败类
    2020-11-21 05:21

    It seems you can change the colour of the checkbox in grayscale by using CSS only.

    The following converts the checkboxes from black to gray (which was about what I wanted):

    input[type="checkbox"] {
        opacity: .5;
    }
    

提交回复
热议问题