Is it possible to change the layout of a checkbox without adding the label tag in CSS?
Things like this do not have any effect:
input[type=checkbox][disabled] {
  background-color: green;
  border: 10px solid red;
}
The only thing I found so far is how to change the opacity.
 
     
     
     
    