HighDots Forums  

Re: textarea wrap

Cascading Style Sheets Layout/presentation on the WWW (comp.infosystems.www.authoring.stylesheets)


Discuss Re: textarea wrap in the Cascading Style Sheets forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
VK
 
Posts: n/a

Default Re: textarea wrap - 03-15-2006 , 04:48 AM







Mark D. Smith wrote:
Quote:
Hi

I have googled but not found a solution to wordwrap in a textarea using
firefox/netscape.

is there a style sheet solution or am i stuck with not being able to force
wrapping in a textarea
Textarea has wrap attribute set to "logical" ("soft" by IE) by default,
so strings will be wrapped after reaching the opposite border, but only
manually typed Enter's will be submitted. So your task is to prevent
wrap, not to enable it ;-)

You can partially emulate wrap="off" by setting textarea style to:
white-space: nowrap;

But overall it is more standard and reliable to set "wrap" attribute:
"physical" - all visual line breaks are submitted as newlines
"logical" - you have visual line breaks but only "hardtyped" breaks are
submitted
"off" - rather clear I guess :-)

P.S. This attribute is missing in W3C DTD's by mistake (one didn't
understand the physical meaning of "wrap" and thought it to be
replaceable by styling). Nevertheless it is supported by all ever
existed browsers.

P.P.S. Modern browsers also support an alternate attribute set from
Microsoft: "soft", "hard", "off". These values have the same meaning
and effect, but the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.



Reply With Quote
  #2  
Old   
Jukka K. Korpela
 
Posts: n/a

Default Re: textarea wrap - 03-15-2006 , 05:21 AM






VK wrote:

Quote:
Textarea has wrap attribute set to "logical" ("soft" by IE) by default,
The textarea element has no wrap attribute according to the HTML
specifications. Browsers generally recognize such an attribute, but
information about "logical" as a value is outdated. The currently
recognized values are "soft", "hard", and "off".

There is of course no defined default for an attribute that is not
defined in the specifications. Most browsers actually behave as if
wrap="soft" had been given, but there is some variation in what this
means. This is not surprising, since there is no published specification
of what it means. Actually, the specifications more or less say that no
wrapping take place, since the idea is that the user can type
arbitrarily long lines. See
http://www.cs.tut.fi/~jkorpela/forms/textarea.html
for some explanations.

Quote:
so strings will be wrapped after reaching the opposite border, but only
manually typed Enter's will be submitted.
More or less so, but there's a difference between IE and Firefox: if
there is a "word" (sequence of characters not containing whitespace
characters) that is longer than the textarea width, IE breaks the "word"
visually, whereas Firefox introduces horizontal scrolling. I don't think
there's a way to change the Firefox behavior (which corresponds to the
specifications better than the IE behavior).

To see what this means, test this on your browsers:

<textarea rows=3 cols=12>
supercalifragilisticexpialidocious
</textarea>

Quote:
So your task is to prevent
wrap, not to enable it ;-)
Forcing either of them is impossible. The crucial question is why the OP
wants to force this or that behavior in this issue.

Quote:
You can partially emulate wrap="off" by setting textarea style to:
white-space: nowrap;
Maybe it should do that, but it doesn't, even if you add overflow: auto
or overflow: scroll. That's at least the result of my testing on
Firefox. Please specify the URL of your test document and the version(s)
of Firefox you tested, if you have different _observations_.

Quote:
But overall it is more standard and reliable to set "wrap" attribute:
"physical" - all visual line breaks are submitted as newlines
"logical" - you have visual line breaks but only "hardtyped" breaks are
submitted
"off" - rather clear I guess :-)
I don't think "physical" and "logical" have been supported for a long
time. At least Firefox 1.5 ignores them.

Quote:
P.S. This attribute is missing in W3C DTD's by mistake
Please don't try to rewrite history. It was no mistake. Read the actual
specifications to learn how textarea was meant to work. Wrapping was
later invented by browser vendors and implemented inconsistently and
confusingly, as it still is.

Quote:
Nevertheless it is supported by all ever
existed browsers.
Any statements about "all browsers" tend to tell about the limited
experience of the person who makes the statement rather than the reality
around us.

Quote:
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.
You didn't bother actually testing such matters, did you?


Reply With Quote
  #3  
Old   
VK
 
Posts: n/a

Default Re: textarea wrap - 03-15-2006 , 06:49 AM




Jukka K. Korpela wrote:
Quote:
VK wrote:

Textarea has wrap attribute set to "logical" ("soft" by IE) by default,
That was my mistake: the set is "physical", *** virtual *** and "off".
I mistyped it because I must was thinking of total absence of logic in
this situation :-)

Quote:
The textarea element has no wrap attribute according to the HTML
specifications. Browsers generally recognize such an attribute, but
information about "logical" as a value is outdated. The currently
recognized values are "soft", "hard", and "off".
Sorry again for "logical" instead of proper "virtual". HTML perfectly
has wrap attribute since Netscape 3 at least. It is not presented
though in W3C DTD's which is a serious problem of W3C but not of the
web community as such.

Quote:
There is of course no defined default for an attribute that is not
defined in the specifications.
Of course you checked it, did you? For 90% of current UA's it is set to
"soft" by default, the rest is hiding the same setting from sensitive
eyes of W3C :-)

Quote:
Most browsers actually behave as if
wrap="soft" had been given, but there is some variation in what this
means. This is not surprising, since there is no published specification
of what it means. Actually, the specifications more or less say that no
wrapping take place, since the idea is that the user can type
arbitrarily long lines. See
http://www.cs.tut.fi/~jkorpela/forms/textarea.html
for some explanations.

so strings will be wrapped after reaching the opposite border, but only
manually typed Enter's will be submitted.

More or less so, but there's a difference between IE and Firefox: if
there is a "word" (sequence of characters not containing whitespace
characters) that is longer than the textarea width, IE breaks the "word"
visually, whereas Firefox introduces horizontal scrolling. I don't think
there's a way to change the Firefox behavior (which corresponds to the
specifications better than the IE behavior).

To see what this means, test this on your browsers:

textarea rows=3 cols=12
supercalifragilisticexpialidocious
/textarea
You are repeating the same mistake as 7 years ago - wrap attribute
doesn't set a *representation mode* - though it affects on it directly.
wrap attribute governes submission process of teaxtarea data. You
really should read old Netscape specs and consult with experienced
server admins. ;-) It is currently broken on some browsers in the
submission part, though the representation reflection is still working.
And I see W3C to blame for that because for 7 years no one reasonnable
browser producer could drop this attribute. So even the "standards
followers" had to implement it:- but in kind of conspiracy situation,
bootlegging it on the backyard.

Quote:
P.S. This attribute is missing in W3C DTD's by mistake

Please don't try to rewrite history. It was no mistake. Read the actual
specifications to learn how textarea was meant to work. Wrapping was
later invented by browser vendors and implemented inconsistently and
confusingly, as it still is.
I was using wrap attribute since Netscape 3.0 Gold and never stopped to
do it - with necessary discrepancies adjustments over time. And no
offence but in the year 1999 W3C's activity was rather out of intensive
public interest. It was more important to know and remember all new
features and bugs in NN and IE. But coming back to "rewrite history":-
"I don't like it so it never existed and never will exist" - is an
exact case of trying to rewrite the history. And the lesson W3C may get
out of it is that no one can ignore the reality - but reality can
easily ignore anyone.

Quote:
Nevertheless it is supported by all ever
existed browsers.

Any statements about "all browsers" tend to tell about the limited
experience of the person who makes the statement rather than the reality
around us.
Read about reality above.

Quote:
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.

You didn't bother actually testing such matters, did you?
I'm not testing - I'm using. W3C could facilitate the usage greatly by
finally sticking to one of de-facto standards and requiring the same
from all players (of whom willing to listen W3C).



Reply With Quote
  #4  
Old   
Jukka K. Korpela
 
Posts: n/a

Default Re: textarea wrap - 03-15-2006 , 08:03 AM



VK wrote:

Quote:
That was my mistake: the set is "physical", *** virtual *** and "off".
No it isn't. You are still in error.

Quote:
Sorry again for "logical" instead of proper "virtual".
Stop saying you're sorry and check the facts. Neither of those values
has any support worth mentioning. Using wrap="virtual" seems to work for
the same reason as wrap="Hello world" does: it is ignored.

Quote:
HTML perfectly
has wrap attribute since Netscape 3 at least.
Smells like trolling.

Quote:
To see what this means, test this on your browsers:

textarea rows=3 cols=12
supercalifragilisticexpialidocious
/textarea

You are repeating the same mistake as 7 years ago
Do you mean that seven years ago you actually checked facts before
trying to give advice in public?

Quote:
- wrap attribute
doesn't set a *representation mode*
Stop babbling and check the facts. What's so difficult in actually
looking at how browsers work?

Quote:
the original Netscape set "logical", "physical" and
"off" has better cross-browser support, especially for legacy platforms.

You didn't bother actually testing such matters, did you?

I'm not testing - I'm using.
So when giving advice in future, will you be honest and precede your
advice with a statement that says that you describe what you have been
using, without actually checking the specifications _or_ actual browser
behavior in recent years?


Reply With Quote
  #5  
Old   
VK
 
Posts: n/a

Default Re: textarea wrap - 03-15-2006 , 02:43 PM




VK wrote:
Quote:
"WRAP attribute in textarea is not a representation attribute despite
it has direct by secondary representation effect.
"WRAP attribute in textarea is not a representation attribute despite
it has a direct but secondary representation effect.



Reply With Quote
  #6  
Old   
Jukka K. Korpela
 
Posts: n/a

Default Re: textarea wrap - 03-16-2006 , 01:47 AM



VK wrote:

Quote:
Now the test (watch breaks, <textarea... strings should be on one line)
- let's go first by IE's model ("hard", "soft", "off"):
Your way of saying that you were totally wrong in your advocation of
"physical" and "logical" is implicit but clear. Your attempt to
obfuscate this simple thing by pointless snippets of code, confused
attacks at the W3C, etc., makes it also rather clear that you have
decided to act destructively. Don't be surprised if you'll be ignored.


Reply With Quote
  #7  
Old   
VK
 
Posts: n/a

Default Re: textarea wrap - 03-16-2006 , 02:50 AM




Jukka K. Korpela wrote:
Quote:
VK wrote:

Now the test (watch breaks, <textarea... strings should be on one line)
- let's go first by IE's model ("hard", "soft", "off"):

Your way of saying that you were totally wrong in your advocation of
"physical" and "logical" is implicit but clear.
I'm still not clear where did you get "logical" value. From my side it
was a typo instead of proper "virtual". And yes "hard/soft/off" have
better coverage taking into account the prevailing UA. By your
consideration it solves the problem of missing "wrap" in DTD anyhow?

Quote:
Your attempt to
obfuscate this simple thing by pointless snippets of code, confused
attacks at the W3C, etc., makes it also rather clear that you have
decided to act destructively.
"pointless snippets of code"? Sorry, but did you actually try it? I
made it method="get" so one could see the submission dump in the
address bar. Did you look at new line escape sequences for off / soft /
hard?

But the main answer I guess is that HTML DTD's are frozen and will stay
frozen forever? Well, negative answer is still an answer. Let's wait
another year to come back to the same question.

Quote:
Don't be surprised if you'll be ignored.
Don't be surprised if W3C DTD be (forcely) ignored.



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.4
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.