A mirror of my website's source code.

Important information: Google announced that, from September 2026, Android devices will require ALL apps to be signed by Google, effectively leading to an iOS situation. Value your right to a computer that does what you want; do not tolerate this monopolistic practice! Contact me if you don't understand why it is bad. Click to learn more.

 checkbox-custom-styles-ex1.html

View raw Download
text/html • 278 B
HTML document, ASCII text
        
            
1
<!DOCTYPE html>
2
<html>
3
4
<head>
5
<style>
6
input[type="checkbox"] {
7
appearance: none;
8
width: 15px;
9
height: 15px;
10
background-color: grey;
11
}
12
</style>
13
</head>
14
15
<body>
16
<input type="checkbox" />
17
</body>
18
19
</html>