switch-final.html
HTML document, ASCII text
1<!DOCTYPE html> 2<html> 3 4<body> 5<style> 6input[type=checkbox].switch { 7-webkit-appearance: none; 8-moz-appearance: none; 9appearance: none; 10position: relative; 11background: #000; 12width: 30px; 13height: 16px; 14} 15input[type=checkbox].switch::before { 16top: 1px; 17left: 1px; 18position: absolute; 19display: block; 20background: red; 21content: ""; 22color: transparent; 23width: 14px; 24height: 14px; 25} 26input[type=checkbox].switch:checked::before { 27left: unset !important; 28right: 1px; 29} 30</style> 31<input type="checkbox" class="switch" /> 32</body> 33 34</html>