Thomas J.S.: Forms, CSS und Netscape

Beitrag lesen

Hallo,

oder kann man bei Netscaoe Formtags in Tabellen und mit css ganz vergessen?

man kann. zwar nicht ganz aber fast, das geht:
grüße
Thomas

<html>
<head>
 <title>Untitled</title>
   <style type="text/css">
   .form
     {
      font-family: verdana, arial, helvetica, sans-serif;
      font-size: 9pt;
      }
  input, textarea
  {
   font-family: verdana, arial,helvetica, sans-serif;
   font-size: 8pt;
  }
   </style>
</head>

<body>
<form action="/login/login.php" method="post">
<table>
<tr>
<td align="right" valign="middle" bgcolor="#99cccc" class="form">
 Login
    <input  name="email" size="18" value="your  email address">
      Password
    <input name="password" size="12" type="password">
    <input alt="go" border="0" name="go" src="images/go_blk.gif" type="image">   
</td>
</tr>
</table>
</form>

</body>
</html>