line-height textarea
html, textarea
Solution
You may try `percentage`, `em`, `px` etc. and choose one for you. Some browsers like firefox have some errors with this.
Here is a working live demo.
Problem
Currently, my textarea is displayed like this: click here to see the picture. I would like that height between each lines be less important. UPDATE: I tried line-height in the css file: ``` textarea{ line-height: 120%; } ``` but it doesn't work, just reduces the textarea height and doesn't reduce the height between lines. How can I do it?