foundation / foundation-sites

The most advanced responsive front-end framework in the world. Quickly create prototypes and production code for sites that work on any kind of device.
https://get.foundation
MIT License
29.66k stars 5.48k forks source link

Textarea height #2183

Closed cristianovallory closed 11 years ago

cristianovallory commented 11 years ago

textarea not resizing. I did that putting height:auto instead of be fixed. It was height: 2.3125em;

Being fixed the rows tag did not work.

The file; scss/foundation/components/_forms.scss

cristianovallory commented 11 years ago

In the flie there is import form elements. I just added height:auto.

emilhem commented 11 years ago

It should resize. Try adding

textarea {
    resize:vertical;
}

Also it helps if you say your version and browser in your question.

railszilla commented 11 years ago

you should have an own css file to override it, using:

textarea { height: inherit; }

worx fine for me