Bonjour,

Je souhaite modifier le CSS de mes checkbox

J'utilise le code suivant par exemple :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
input[type="checkbox"]:not(:checked) {
width:15px;
height:15px;
background-color:grey;
border-style:none;
transition: all 0.3s ease-in-out;
-moz-transition: all 0.3s ease-in-out;
-webkit-transition: all 0.3s ease-in-out;
 
}
 
input[type="checkbox"]:checked {
background-color:black;
 
}
cela n'a aucun effet et je ne comprend pas du tout pourquoi, quelqu'un peut-il me donner une indication ?

Merci d'avance