1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
| <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,user-scalable=no, initial-scale=1"> <title >123</title>
<link rel="stylesheet" type="text/css" href="css.css" /> <style>
.li1{display: none;} .li1_lab{width: 31px;height: 31px;border: 1px solid #ccc;display: block; -moz-box-shadow:0px 0px 2px #999 inset; -webkit-box-shadow:0px 0px 2px #999 inset; box-shadow:0px 0px 2px #999 inset; } .li1:checked~.li1_lab{ background: url(checkbox.jpg); -moz-box-shadow:0px 0px 2px green inset; -webkit-box-shadow:0px 0px 2px green inset; box-shadow:0px 0px 2px green inset; } </style>
</head> <body>
<input type="checkbox" id="li1" class="li1" value="1" name="li1"> <label for="li1" class="li1_lab"></label>
</body> </html>
|