28173 sujets

CSS et mise en forme, CSS3

Salut

J'ai un souci d'affichage entre ie et nestcape
voila mon code html


<body>

<div class="head1">
<img src="image/logo-vertigo2.jpg"  alt="logo-vertigo">
</div>

<div class="menu">
 <table cellpadding=0 cellspacing=0 width=100% height=30>
    <tr>
     <td class=textemenu1> 
      <div>Accueil</div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Dernier numéro</a></div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Agenda</a></div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Textes en ligne</a></div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Anciens numéros</a></div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Abonnement</a></div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Sites utiles</a></div>
     </td> 
     <td class=textemenu> 
      <div><a href="#.html">Contact</a></div>
     </td> 
    </tr>
   </table>
</div>

<div class="recherche">
    <form action="php/recherche.php" method="post" enctype="text/plain">
     Rechercher : <input name=recherche size=10>
    </form>   
</div>

</body>




et voici mon css pour le div "recherche"

.recherche {
width: 100%;
background-color: #000000;
text-align: right;
font-family: arial, verdana, sans-serif;
font-weight: bold ;
font-size: 8pt;
font-variant:uppercase;
color: #ffffff;
}


Mon probleme se trouve ici je n'arrive pas a trouver la solution pour que sur internet explorer il ne me cree pas cette ligne supplémentaire
j'ai pourtant suivi les conseils proposés dans les tutoriaux. RIEN Y FAIT

Smiley decu
Modifié par greench (27 Jun 2006 - 16:19)
M'ait avis que c'est à cause du formulaire. Ie considérant qu'il y a un retour de chariot.

Essaye ca :
form {
display: inline;
}