Ver Mensaje Individual
  #1 (permalink)  
Antiguo 13/04/2005, 13:26
martorell
 
Fecha de Ingreso: febrero-2004
Mensajes: 67
Antigüedad: 20 años, 2 meses
Puntos: 0
problemas con un formulario

Buenas, he hecho un formulario con dos campos para seleccionar entre varias opciones y un boton.
No tengo mucha idea y el caso es que funciona bien pero al mostrarlo en el Internet Explorer hace una cosa rara: debajo del formulario me mete un espacio que yo no he añadido (parecen un par de saltos de linea) y que con el Mozilla y otros navegadores no sale. Os pongo el codigo a ver si me podeis decir porque pasa eso, en este caso no me molesta mucho pero estoy haciendo otro y si es importante que no me meta el espacio.

Código HTML:
<table width="100%" border="0" cellspacing="5" cellpadding="0">
        <tr> 
          <td><form action="index.php" method="post" name="form1">
              <table width="440" border="0" align="center" cellpadding="0" cellspacing="0">
                <tr> 
                  <td width="100"> <div align="left"><img src="form_buscar.gif" width="100" height="20"></div></td>
                  <td width="35"><div align="right"><img src="form_zona.gif" width="35" height="15"></div></td>
                  <td width="145"><select style="font-size: 11px" name="zona" size="1">
                      <option selected>Todas</option>
                      <option>Comunidad Valenciana</option>
                      <option>Catalunya</option>
                      <option>Castilla Leon</option>
					  <option>Baleares</option>
					  <option>Andalucia</option>
					  <option>Madrid</option>
                      <option>USA</option>
                    </select></td>
                  <td width="35"><div align="right"><img src="form_anyo.gif" width="35" height="15"></div></td>
                  <td width="70"> <div align="left"> 
                      <select name="ano" size="1" style="font-size: 11px">
                        <option selected>Todos</option>
                        <option>2005</option>
                        <option>2004</option>
                        <option>2003</option>
                      </select>
                    </div></td>
                  <td width="55"><input name="submit" type=submit value="Enviar" style="font-size: 11px"></td>
                </tr>
              </table>
            </form></td>
        </tr>
      </table>