I want to color the border of checkbox. I have written the below css -
input[type=checkbox] {
            height: 15px;
            width: 15px;
            border: 1px solid #007dc6;
            -webkit-appearance: none;
        }
This works for chrome only. I don't want to write browser specific code in css. The css should apply to all latest browsers.
 
    