Document type does not allow element "td"
torkhani
Messages postés
3
Statut
Membre
-
hamzafes Messages postés 258 Statut Membre -
hamzafes Messages postés 258 Statut Membre -
Bonjour, stp j'ai besoin d'aide our corriger cet erreur:document type does not allow element "td" here
<td><span class="label">Login</span><input type="text" name="login"/></…
voici mn code :
<td>
<form method="post" action="connexion.php">
<td><span class="label">Password</span><input type="password"name="mot_de_passe"/></td>
<td><span class="label">Login</span><input type="text" name="login"/></td>
<td><input type="submit" value="OK" id="couleur_boutton"/></td>
</form>
</td>
Note bien: je veu ke se présente dans le même ligne
<td><span class="label">Login</span><input type="text" name="login"/></…
voici mn code :
<td>
<form method="post" action="connexion.php">
<td><span class="label">Password</span><input type="password"name="mot_de_passe"/></td>
<td><span class="label">Login</span><input type="text" name="login"/></td>
<td><input type="submit" value="OK" id="couleur_boutton"/></td>
</form>
</td>
Note bien: je veu ke se présente dans le même ligne
A voir également:
- Document type does not allow element "td"
- Comment reduire la taille d'un document - Guide
- Signer un document word - Guide
- Comment ouvrir un document docx - Guide
- Comment supprimer une page dans un document word - Guide
- Clear type - Guide
2 réponses
Bonjour,
<tr>
<form method="post" action="connexion.php">
<td><span class="label">Password</span><input type="password"name="mot_de_passe"/></td>
<td><span class="label">Login</span><input type="text" name="login"/></td>
<td><input type="submit" value="OK" id="couleur_boutton"/></td>
</form>
</tr>
<tr>
<form method="post" action="connexion.php">
<td><span class="label">Password</span><input type="password"name="mot_de_passe"/></td>
<td><span class="label">Login</span><input type="text" name="login"/></td>
<td><input type="submit" value="OK" id="couleur_boutton"/></td>
</form>
</tr>
t'as mis là un <td></td> dans un autre <td></td> !!! ça ce fait pas ça
si tu veux insérer des cellules dans une grande cellule, tu crée un tableau entre les <td></td> comme ça :
<td>
<form method="post" action="connexion.php">
<table>
<tr>
<td><span class="label">Password</span><input type="password"name="mot_de_passe"/></td>
<td><span class="label">Login</span><input type="text" name="login"/></td>
<td><input type="submit" value="OK" id="couleur_boutton"/></td>
</tr>
</table>
</form>
</td>
Allah mo3ine
si tu veux insérer des cellules dans une grande cellule, tu crée un tableau entre les <td></td> comme ça :
<td>
<form method="post" action="connexion.php">
<table>
<tr>
<td><span class="label">Password</span><input type="password"name="mot_de_passe"/></td>
<td><span class="label">Login</span><input type="text" name="login"/></td>
<td><input type="submit" value="OK" id="couleur_boutton"/></td>
</tr>
</table>
</form>
</td>
Allah mo3ine