0

The following FIDDLE shows a series of inputs. The last is a textfield. On Firefox it looks different and renders differently based on padding (although less so on FIDDLE than without FIDDLE.

What CSS can be used to force it to behave like the inputs do cross browser

http://jsfiddle.net/JdKyr/2/

Walrus
  • 19,801
  • 35
  • 121
  • 199

1 Answers1

1

Use the following:

textarea { 
    resize: none; 
    font: /* same font declaration here as for the input fields*/
}

The rest looks okay for me. Check your modified fiddle.

Christoph
  • 50,121
  • 21
  • 99
  • 128