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