uses a front-end framework called skel. The checkbox in the form form is not displayed and checked by F12. The code in the framework is as follows:
input[type="checkbox"],
input[type="radio"] {
-moz-appearance: none;
-webkit-appearance: none;
-ms-appearance: none;
appearance: none;
display: block;
float: left;
margin-right: -2em;
opacity: 0;
width: 1em;
}
what does this mean? How to make checkbox display. I can"t even comment out this code.