salut
je veut crée deux champ de saisie (login et password), mais j'ai un problème dans le positionnement des champs labels et le champ de saisie.
HTML
CSS
et voila comment est le décalage:
je veut crée deux champ de saisie (login et password), mais j'ai un problème dans le positionnement des champs labels et le champ de saisie.
HTML
<form action="">
<label>Logon:</label> <input type="text" class="input" />
<label>Password: </label> <input type="password" class="input" />
<label> </label> <input type="submit" value="Submit" class="button" />
</form>
CSS
.input {
border: 1px solid #006;
background: #ffc;
}
.input:hover {
border: 1px solid #f00;
background: #ABC8E2;
}
label {
width: 150px;
float: left;
margin: 2px 4px 6px 4px;
text-align: middle;
}
br { clear: left; }
et voila comment est le décalage: