Bonjour à tous!
Voila, j'ai un problème (étonnant, non?) : j'ai un formulaire, avec des label et des input text à l'intérieur.
Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
<form action="inscription.php" method="post">
 <fieldset style="width:60%;">
  <legend>Informations personnelles</legend>
  <div style="margin-left:10% !important;margin-left:3%">
   <label>Nom</label>
   <input type="text" name="nom" id="nom" value="" style="width:60%;" />
   <br /><br />
   <label>Prénom</label>
   <input type="text" name="prenom" id="prenom" value="" style="width:60%;" />
   <br /><br />
  </div>
 </fieldset>
</form>
Quand je saisis du texte à l'intérieur de l'input, tout se décalle sur la gauche (y a même des fois où le input s'agrandit dès la première lettre est tapée! )
Je suis pour le moment sur IE, je n'ai pas encore testé sous FF (chaque problème en son temps )
Quelqu'un a-t-il déjà rencontré le problème? L'a-t-il résolu?
Merci pour vos commentaires et vos suggestions.
Ciao.