Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Under ie7 i have a strange problem on textareas. When i type something in and push enter a space seems to be added instead if making a new line.

It seems to be CSS related since when i remove Javascript the bug is still there. And when i remove CSS it works as expected.

When i remove all mentions of textarea in my styling the bug does not disappear. SO maybe its a parent styling of something more complex.

All hints are welcome

http://g.imagehost.org/download/0038/textarea_bug

Here is the file

http://www.2shared.com/file/5302450/2f33f63c/page.html

Click on the bottom right link to "download the zip"

share|improve this question
Can you provide some sample code? I can't really determine the cause from your description. – Joel Potter Apr 10 '09 at 13:38
Please provide us with a sample of the CSS you use, thanks! – RuudKok Apr 10 '09 at 13:42
I just added the file, the problem persists. – coulix Apr 10 '09 at 13:59

1 Answer

up vote 8 down vote accepted

The problem seems to be your reset styles. Text area has white-space:normal, which apparently IE7 doesn't like.

Put this tag just under your reset line. I tested this in IE7 and chrome.

textarea { white-space:pre; }
share|improve this answer
You rock ! i was just starting to target the reset .. – coulix Apr 10 '09 at 14:15
nice one, beat me to it in 5 secs... I'll remove my answer and +1 you. – RuudKok Apr 10 '09 at 14:16
1  
The reset was probably designed for ie6, which ignores white-space:normal. Since IE7 fixed that bug, the reset needs to be updated. – Joel Potter Apr 10 '09 at 14:16
This also fixes IE6 textareas returned to nyroModal windows. Arrrrrgh! – g33kz0r Jul 22 '09 at 16:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.