Bonjour,

Comment aligner au milieu de ma page, je sais qu'il faut utuliser align=center et valign=middle, mais j'ai essayé et ca marche pas? C'est l'alignement verticale qui ne marche pas en fait.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
 
 
	<body>
            <table border=5 align=center>            
                <td>
                 <form name="formLogin" action="./index.php" method="post">
                  <table width="300" border="0">
                     <tr>
                        <td width="124">Utilisateur</td>
                        <td width="166"><input type="text" maxlength="50" name="user" value="root"></td>
                     </tr>
                     <tr>
                        <td width="124">Mot de passe</td>
                        <td width="166"><input type="text" maxlength="50" name="password" value="test"></td>
                     </tr>
                  </table>
                  <p align=center>
                     <input type="submit" name="Submit" value="Connexion">
                  </p>
               </form>
            </td>
         </tr>
</table>
	</body>