Bonjour,
j'ai créé un tableau
Le problème est que j'obtiens cela :
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 <table align="left" border="0" cellpadding="0" cellspacing="0" width="510"> <tr> <td><img name="recherche_gauche" src="images/recherche_gauche.jpg" width="18" height="26" border="0" id="recherche_gauche" alt="" /></td> <td background="images/recherche.jpg" width="476" height="26" border="0" class="recherche" alt="" /> <!--Recherche--> <center> <form action="http://www.google.fr/search" name=f><input name=hl type=hidden value=fr> <input maxlength=2048 name=q size=36 title="Recherche Google" class="texte_recherche_google" value=""> <input name=btnG type=submit class ="bouton_recherche_google" value="Recherche Google"> </form> </center> <!--FIN recherche--> </td> <td><img name="recherche_droite" src="images/recherche_droite.jpg" width="16" height="26" border="0" id="recherche_droite" alt="" /></td> </tr> </table>
Cependant,
si j'enlève le code :
sa marche :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2<form action="http://www.google.fr/search" name=f>
mai le formulaire, lui ne marche plus.
Comment résoudre le problème ?
mon fichier style.css:
Merci de votre aide.
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 .texte_recherche_google { width: 20em; height: 1.3em; color: white; font-size: 80%; border:1px dashed ; background-color: transparent; padding:0px 2px 0px 0px; vertical-align: bottom; margin-bottom: 1px; } .bouton_recherche_google { border:5px insset; color: #000000; }
Partager