Rene: Textaurichtung im Internet Explorer 5.0

Beitrag lesen

Hallo Forum! Kann mir jemand auf die Sprünge helfen, wie sich im IE 5.0 der Text 'Suche' auf gleicher Höhe mit dem Eingabefeld und dem Button ausrichten lässt? In den anderen Browsern ist er's automatisch...

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">

<html>
<head>
<title>Suche</title>
<style type="text/css">
input
{
 vertical-align : middle;
}

</style>
</head>

<body>

<div id="suche">
 <form method="post" action="">
  Suche:<input name="suche" type="text" size="20" />
  <input class="button" name="los" type="image" src="layout/buttons/los.gif" value="Los !" />
 </form>
 </div>

</body>
</html>

Danke !