Salut à tous,
J'ai un formulaire et dedans un tableau, mais il prend une ligne de plus dans la case dans laquelle il est, c'est comme si il y avait un <br> après </form>.
J'avais trouvé un parade en mettant <form> juste après <table> et </form> juste avant </table>, mais ce n'est pas compatible W3C.
Y-a-t-il une solution ?
Code :
- echo "<td nowrap valign=middle width=150>";
- echo "<form method='post' action='index.php?lang=$lang&rub=search'>";
- echo "<table border='1' cellpadding='2' cellspacing='0'>";
- echo "<tr><td align='center' nowrap>";
- echo "<input type='text' name='sk' size=10 value='' style='$form_field'>";
- echo "</td><td nowrap>";
- echo "<input type='submit' value=\"$l_search\" style='$form_submit'>";
- echo "</td></tr>";
- echo "</table>";
- echo "</form>";
- echo "</td>";
|