Horje
Checkbox checked border square CSS Code Example
Checkbox checked border square CSS
<style>
.checkbox-round {
    width: 1.3em;
    height: 1.3em;
    background-color: white;
    border-radius: 50%;
    vertical-align: middle;
    border: 1px solid #ddd;
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    cursor: pointer;
}

.checkbox-round:checked {
    background-color: gray;
}
</style>
<input type="checkbox" class="checkbox-round" />

<demo>
  https://jsfiddle.net/287a4boL
</demo>
Source: jsfiddle.net




Html

Related
chrome mobile color address bar Code Example chrome mobile color address bar Code Example
theme color Code Example theme color Code Example
form for user id and image upload html Code Example form for user id and image upload html Code Example
custom checkbox with image css Code Example custom checkbox with image css Code Example
how to change size of image in html Code Example how to change size of image in html Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
12