problème de mise en forme d'un formulaire dans un tableau

problème de mise en forme d'un formulaire dans un tableau - HTML/CSS - Programmation

Marsh Posté le 01-10-2002 à 17:27:57    

Bonjour a tous !
 
J'ai un léger problèmes de mise en forme, normalement avec le code ci-dessous je devrais avoir mon formulaire au milieu de mon tableau mais celui-ci ce place en haut ?
Est ce une erreur de ma part ou un bug ?
 
Merci a tous !!!
 
<td valign="middle" align="center" bordercolor="#FFFFFF" bgcolor="#FFFFFF">
<form name="form'.$count.'" method="post" action="">
<input name="Nom_libel'.$count.'" type="text" id="Nom_libel'.$count.'" value="'.$data[nom_libel].'" size="60" maxlength="255">
</form>
</td>

Reply

Marsh Posté le 01-10-2002 à 17:27:57   

Reply

Marsh Posté le 01-10-2002 à 17:35:58    

Rectificatif en fait le tableau me fait une sorte de saut de ligne.
Je place le code sans les variables :
 
<table width="100%" border="1" cellpadding="0" cellspacing="0">
  <tr>
    <td align="center" valign="middle">  
      <div align="center">
        <form name="form1" method="post" action="">
          <input type="text" name="textfield">
        </form>
      </div></td>
  </tr>
</table>

Reply

Marsh Posté le 01-10-2002 à 18:15:09    

Essaye :
 

Code :
  1. <form style="margin-bottom:0;" name="form1" method="post" action="">

Reply

Marsh Posté le 01-10-2002 à 18:38:11    

Ce qui nous donne au finish :
 
 


<html>
<head>
 <title>Bestial</title>
</head>
<body>
<table width="100%" border="1" cellpadding="10" cellspacing="0">  
 <tr>  
   <td align="center"><form style="margin-bottom:0;" name="form1" method="post" action="">
<input type="text" name="textfield"></form></td>  
 </tr>  
</table>  
</body>
</html>


 
 
 
 

Reply

Marsh Posté le 03-10-2002 à 09:11:48    

Ultra Bestial a écrit a écrit :

Ce qui nous donne au finish :
 
 


<html>
<head>
 <title>Bestial</title>
</head>
<body>
<table width="100%" border="1" cellpadding="10" cellspacing="0">  
 <tr>  
   <td align="center"><form style="margin-bottom:0;" name="form1" method="post" action="">
<input type="text" name="textfield"></form></td>  
 </tr>  
</table>  
</body>
</html>


 
 
 
 
 




 
Merci ca marche nickel !

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed