questo e' lo stile:
codice:
.text_field {font-family: "Arial", sans-serif; font-size: 12px; color: #000000;_
background-color: #ffcc00; border: solid 1px; border-color: #003366}
questa la pagina:
codice:
<html>
<head>
<title><%=AdminWindowsTitle%></title>
<LINK REL="stylesheet" TYPE="text/css" HREF="../style/stylesheet.css">
</head>

<body>
<form name="form1" method="post" action="">
  <table width="1%" border="0" align="center" cellpadding="0" cellspacing="0">
    <tr>
      <td>Username:
      <input class="text_field" name="textfield" type="text" maxlength="15"></td>
    </tr>
    <tr>
      <td>Password:
        <input class="text_field" name="textfield2" type="text" maxlength="15"></td>
    </tr>
  </table>
</form>
</body>
</html>
la cosa che non riesco a risolvere e'...
se nello stylesheet, invece di creare una classe, metto input e basta (cioe' generico per tutti), funziona, appena distinguo la classe e la assegno al text field, non lo fa come prima !
perche?
eppure dovrebbe essere giusto...