Höhe von Textfeldern --> Dringend

Status
Nicht offen für weitere Antworten.
Haha!

Ich wollte keine Höhe für eine Textarea.
Das weiß ich!!

Ich möchte die Höhe eines Stinknormalen Textfeldes <input type="text" ....> verkleinern!

Danke trotzdem
 
Ich kenn nur eine etwas umständliche Methode:

  <div style="position:relative; top:0px; left:0px; width:40px; height:15px; border:1px solid #cacaca; border-top:2px ridge #cacaca; border-left:2px ridge #cacaca;">
    <div style="position:absolute; top:-1px; left:-1px; width:36px; height:15px; clip:rect(2,36,12,2);">
      <input type="text" style="font-size:14px; position:absolute; top:-4px; left:-2px; width:40px; height:22px; background:transparent" value="TEXT">
    </div>
  </div>
 
geht auch einfacher:
<input type="text" name="" class="input">

css:
.input
{
height: 10px;
}

wobei das eigentlich die gleiche Lösung wie von Gumbo ist..
 
Status
Nicht offen für weitere Antworten.
Zurück