Bonjour,
Sur ma page signup.html, je voudrais que l'input[type="email"] ai une proprité 'text-transforme:lowercase'.
voici mon css, mais ça fonctione pas :
S'est le seul fichier css. Pas d'autre définition d'input. Pas non plus dans les fichiers .js .
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
16
17
18
19
20
21 input:not(.search-box, .checkbox, .size-checkbox, input[type="file"]), textarea { display: block; width: 300px; height: 40px; padding: 20px; border-radius: 5px; background: #fff; border: none; outline: none; margin: 20px 0; text-transform: capitalize; color: #383838; font-size: 14px; box-shadow: 0 4px 10px rgba(0, 0, 0, 0.01); font-family: "roboto", sans-serif; } input[type="email"] { text-transform: lowercase; }
Partager