Bonjour,
j'ai ce code html :
et ce code CSS :
ca donne ca sur FF (ce que je veux) : et çà sur IE7 help
Modifié par flyjet (20 Jan 2007 - 11:12)
j'ai ce code html :
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Identification</title>
<link href="syles.css" rel="stylesheet" type="text/css" />
</head>
<body>
<div class="header"> </div>
<div class="container">
<div class="divLogin">
<form id="formLogin" method="post" action="verif_login.php"><fieldset><legend>Identifiez-vous</legend>
<label for="userName">Nom d'utilisateur :</label>
<input name="userName" type="text" id="UserName" tabindex="1" size="12" maxlength="12" />
<label for="textfield">Mot de passe :</label>
<input name="password" type="password" id="password" tabindex="2" size="12" maxlength="12" />
</fieldset>
<input name="valider" type="submit" id="valider" tabindex="3" value="Valider" />
<input name="Annuler" type="reset" id="Annuler" tabindex="4" value="Annuler" />
</form>
</div>
</div>
<div class="footer"> </div>
</body>
</html>
et ce code CSS :
/*---------------------------------
/*syles commums à toutes les pages|
/*---------------------------------
*/
/*fixation des marges intérieures et extéreures des élément à 0(par défaut)*/
*{
margin: 0;
padding: 0;
}
/*bandeaux d'en-tête*/
.header {
background-color: #63A5F5;
height: 5%;
}
/* conteneurs du milieu*/
.container {
background-color: #CCCCCC;
}
/*pieds de pages*/
.footer {
background-color: #63A5F5;
height: 5%;
clear: both;
}
/*-----------------
/*Page de conexion|
/*-----------------
*/
/* conteneur du formulaire (centré)*/
.divLogin {
margin-right: 40%;
margin-left: 40%;
}
#formLogin {
width: 100%;
}
#formLogin label {
float: left;
width: 55%;
ca donne ca sur FF (ce que je veux) : et çà sur IE7 help
Modifié par flyjet (20 Jan 2007 - 11:12)