Bonjour,
Je n'arrive pas à comprendre une marge entre IE etFF.
J'ai fais un formulaire dont voici le code
et
Sous FF le formulaire "colle" sous mon titre ( c'est ce que je désire) mais sous IE il se trouve un espace...
Quelqu'un pourrait-il m'aider?
Merci
Je n'arrive pas à comprendre une marge entre IE etFF.
J'ai fais un formulaire dont voici le code
<div style="float: left; width: 220px; ">
<h1> <b> / / / Formulaire </b></h1>
<div id="container">
<form action="vars.php" method="post">
<label for="textinput">NOM:</label>
<br />
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
<label for="textinput">PRENOM:</label>
<br />
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
<label for="textinput">ADRESSE:</label>
<br />
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
<label for="textinput">VILLE:</label>
<br />
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
<label for="passwordinput">TEL:</label>
<br />
<input type="password" id="passwordinput" name="passwordinput" class="textinput" maxlength="25" />
<label for="textinput">MAIL:</label>
<br />
<input type="text" id="textinput" name="textinput" class="textinput" maxlength="25" />
<br />
<label for="textareainput">MESSAGE:</label>
<br />
<textarea id="textareainput" name="textareainput" class="textarea"></textarea>
<br />
<br />
<input type="submit" value="Envoyer" class="buttonSubmit" />
<div id="stylesheetTest"></div>
</form>
</div>
<p class="ancre"> <a href="#"> <img class="image" onmouseover="this.src='images/direction_rol.gif'" title="haut de la page" onmouseout="this.src='images/direction.gif'" alt="retour menu" src="images/direction.gif" /> </a> </p>
</div>
et
h1 {
font-size: 1.2em;
margin: 0 0 0 0px;
color: #E94F1A;
font: Arial, Helvetica, sans-serif;
letter-spacing: 0.7pt;
}
img {
border:0;
}
#container {
padding:0 ;
margin: 0;
}
/*Forms defaults*/
input, textarea {
font-family:Arial, Helvetica, sans-serif;
font-size:1em;
color:#404040;
font-weight:bold;
}
label {
color:#999;
cursor:pointer;
padding-left:2px;
line-height:15px;
vertical-align:top;
}
label.chosen {
color:#333;
}
/*Transparent items*/
.transparent {
filter:alpha(opacity=0);
-moz-opacity:0;
opacity: 0;
border:0px solid #FFF;
background:#FFF;
z-index:10;
cursor:pointer;
}
.transparentFake {
background:none;
border:none;
}
.transparent2 {
z-index:10;
}
/*Text inputs*/
.textinput, .textinputHovered {
width:220px;
height:15px;
background:url(../images/input.gif) no-repeat left top;
border:none;
padding:4px 8px;
}
.textinputHovered {
background-position:left bottom;
}
/*Text areas*/
.textarea, .textareaHovered {
width:220px;
height:125px;
background:url(../images/textarea.gif) no-repeat left top;
border:none;
padding:4px 8px;
}
.textareaHovered {
background-position:left bottom;
}
/*Button*/
.buttonSubmit, .buttonSubmitHovered {
width:69px;
height:26px;
color:#FFF;
font-weight:bold;
padding:2px 5px;
background:url(../images/button.gif) no-repeat left top;
cursor:pointer;
border:none;
}
.buttonSubmitHovered {
background-position:left bottom;
}
/*Test div - testing if stylesheets are enabled*/
#stylesheetTest {
position:absolute;
left:-999px;
width:10px;
height:10px;
}
Sous FF le formulaire "colle" sous mon titre ( c'est ce que je désire) mais sous IE il se trouve un espace...
Quelqu'un pourrait-il m'aider?
Merci