J'ai un problème de marge sur les LI avec IE : les marges ne sont pas prisent en compte dès que je rajoute :
Avec Mozilla c'est ok.
voici la page :
Il y a quekchoz qui m'échappe. Merci d'avance pour votre aide "je craque"
input {
float:right;
}
Avec Mozilla c'est ok.
voici la page :
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Document sans titre</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<style>
* {
margin:0px;
padding:0px;
}
ol
{
padding:0px;
margin-left:30px;
}
fieldset
{
margin:5px;
padding:5px;
}
li {
clear:right;
margin:5px 0px 20px 0px;
}
label
{
width:80%;
clear:both;
float:left;
}
legend {
margin-left:5px;
margin-right:5px;
font-size: 18px;
color: #FF6600;
font-weight: bold;
}
input {
float:right;
}
</style>
</head>
<body>
<form>
<fieldset title="Vous (le patient)" id="patient">
<legend>Vous (le patient)</legend>
<ol start="1">
<li>
<div class="titrebloc">Vous êtes…</div>
<label for="sexe0">Un homme</label><input type="radio" name="sexe" id="sexe0" value="0" /><br/>
<label for="sexe1">Une femme</label><input type="radio" name="sexe" id="sexe1" value="1" /><br/>
</li>
<li>
<div class="titrebloc">Date de naissance</div>
<label for="naissance_date">Année</label><input type="text" name="naissance_date" id="naissance_date" size="4" maxlength="4" /><br/>
</li>
</ol>
</fieldset>
</form>
</body>
</html>
Il y a quekchoz qui m'échappe. Merci d'avance pour votre aide "je craque"