shhac Expert Cheater
Reputation: 0
Joined: 30 Oct 2007 Posts: 108
|
Posted: Tue Jun 16, 2009 8:01 pm Post subject: [XHTML 1.1] Textarea + Wordwrap |
|
|
Is it just me or does Firefox (3.0.11) ALWAYS have word wrap enabled in XHTML 1.1, like, no matter how hard I try, I can't get it to turn off.
Example code:
| Code: | <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<title>FireFox Textarea Word Wrap Issue</title>
</head>
<body>
<div style="position:absolute;top:0px;left:0px;">
<textarea rows="0" cols="0" style="height:350px;width:450px;white-space:pre;"></textarea>
</div>
</body>
</html> |
same with white-space:nowrap;.
(yes I put the div there because that's the form of the issue I'm having specifically, but it is the same without the div)
If it is more than just me, someone please make a bug-report on mozilla.
|
|