¿Realmente tiene que ser un enlace? Tiene muchas desventajas. Si lo que estamos buscando es estética creo que nos estamos equivocando:
Código HTML:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="es" lang="es">
<head>
<meta http-equiv="Content-type" content="text/html;charset=iso-8859-1" />
<meta name="Author" content="derkeNuke" />
<title>Página nueva</title>
<style type="text/css">
* {
font: normal normal normal 1em tahoma;
}
.botonSubmit {
background-color: transparent;
border: none;
padding:0;
margin:0;
}
</style>
</head>
<body>
<form action="recibidorGET.php" method="GET">
<span>texto</span><input class="botonSubmit" type="submit" value="Enviar" /><span>texto</span>
</form>
</body>
</html>
(En FF funciona mejor que en IE, pero un par de "truquitos" y estaría).
Así sabríamos si se pulsó eso u otra cosa para enviar el formulario (si le ponemos atributo
name se envía).
Saludos.