Hallo zusammen,
ich stehe vor dem Problem, dass Netscape (win 4.x) ein input-tag, das innerhalb einer Tabelle steht, immer größer darstellt, als außerhalb von Tabellen, wenn das td-tag in einer Stylesheet mit einer font-Angabe deklariert wird.
z.B.
<style>
td {font-family: arial}
</style>
<form method="" action="">
<input type="text" size="1" maxlenght="1" name="foo">
<table><tr><td>
<input type="text" size="1" maxlenght="1" name="foo">
</td></tr></table>
</form>
Dummerweise benötige ich aber eben möglichst kleine Input-Felder für ein HTML-Kreuzworträtsel. Im IE ist das ganze kein Problem, da gebe ich einfach in der Stylesheet eine width- und height-Angabe an.
Hat jemand einen Workaround parat?
Oliver