i need to creat checkbox like this :
i need to use this check mark in checkbox : https://i.stack.imgur.com/UfplA.png

what i tried is here :
<style>
        .myCheckbox input {
            display: none;
        }
        .myCheckbox span {
            width: 20px;
            height: 20px;
            display: block;
            background: gray;
        }
        .myCheckbox input:checked + span {
            background: url("https://i.stack.imgur.com/UfplA.png");
        }
    </style>
 <input id="Text1" type="text" style="width:150px" tabindex="0" />
    <input id="Text1" type="text" style="width:150px" tabindex="1" />
    <input id="Text1" type="text" style="width:150px" tabindex="2" />
    <label class="myCheckbox">
        <input type="checkbox" name="test" tabindex="3" />
        <span></span>
    </label>
    <input id="Button1" type="button" value="button" style="width:150px" tabindex="4" />
but it is not highlighting when we press the tab, and when i check the background gray is lost,
thanks for help in advance.
here is my code : http://jsfiddle.net/KM6w7/