Hallo!
Auf meiner Internetseite habe ich ein paar ganz normale Formulare mit Textfeldern etc.
Leider weigert sich der Firefox mir einen Cursor anzuzeigen. (der IE macht alles wunderbar...)
Ich habe auch schon mal meine CSS - Definitionen rausgehauen, hat aber auch nichts geholfen.
Hat jemand eine Idee woran das liegen kann? Wie bekomme ich da wieder einen Cursor rein???
CSS:
input, option, select{
height:18px;
font-size:11px;
}
Auszug aus einem formular ....
<form id="formLocation" action="servlet/..." method="post">
<table id="tableLocation" border="0">
<tbody>
<tr>
<td>Name *</td>
<td><input id="id.loc.name" name="loc.name" class="locInput" type="text">
</td>
</tr>
<tr>
<td>Beschreibung *</td>
<td><input id="id.loc.description" name="loc.description" class="locInput" type="text"></td>
</tr>
.....