[WSG] Out of Office AutoReply: WSG Digest

2007-12-11 Thread wendy . pang
I am out of the office today Tues 11 Dec. Please contact Corporate Communication [EMAIL PROTECTED] for any internet requirements, or [EMAIL PROTECTED] for intranet requirements. IMPORTANT: * This transmission is intended for

[WSG] preserve whitespace

2007-12-11 Thread Simon Cockayne
Hi, I have an HTML page and I want to (well my client wants me to) preserve leading blanks in the value of a table data cell. I could use around the data. Or I could use an   for each leading blank. Any others? What is the "standard" way to do it? Cheers, Simon ***

Re: [WSG] preserve whitespace

2007-12-11 Thread Max A. Shpack
Hi It is non-schematic way and usually you can solve this problem with css padding property. If you don't -- use   to keep whitespace. Max. 2007/12/11, Simon Cockayne <[EMAIL PROTECTED]>: > Hi, > > > > I have an HTML page and I want to (well my client wants me to) preserve > leading blanks in t

Re: [WSG] preserve whitespace

2007-12-11 Thread Stepan Reznikov
td {text-indent: 1em;} *** List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm Help: [EMAIL PROTECTED] *

Re: [WSG] preserve whitespace

2007-12-11 Thread Patrick H. Lauke
Quoting Simon Cockayne <[EMAIL PROTECTED]>: I have an HTML page and I want to (well my client wants me to) preserve leading blanks in the value of a table data cell. Depending on the data...right-align the text? -- Patrick H. Lauke _

Re: [WSG] preserve whitespace

2007-12-11 Thread Константин Ефимов
The "standard" way is to use paddings (if your HTML page really contains table data) or not to use tables for layout purpose at all. - Konstantin Efimov http://webstandards.org.ru - Original Message - From: Simon Cockayne To: wsg@webstandardsgroup.org Sent: Tu

Re: [WSG] preserve whitespace

2007-12-11 Thread David Hucklesby
On Tue, 11 Dec 2007 16:09:03 +, Simon Cockayne wrote: > > I have an HTML page and I want to (well my client wants me to) preserve > leading blanks > in the value of a table data cell. ... > td {white-space: pre;} /* perhaps? */ Cordially, David -- www.hucklesby.com

Re: [WSG] preserve whitespace

2007-12-11 Thread Christian Montoya
> - Original Message - > From: Simon Cockayne > To: wsg@webstandardsgroup.org > Sent: Tuesday, December 11, 2007 8:09 PM > Subject: [WSG] preserve whitespace > > Hi, > > > I have an HTML page and I want to (well my client wants me to) preserve > leading blanks in the value of a table data

Re: [WSG] preserve whitespace

2007-12-11 Thread James Ellis
Hi You'd have to define a "blank" is it a tab -> \t, a newline -> \n, a carriage return \r You can use pre or you can use "white-space : pre;" to PREserve the whitespace in the string appearing in the cell.   is an html entity for the non breaking space character. You should use it when you

Re: [WSG] Comment mark

2007-12-11 Thread Ben Buchanan
>> For an HTML comment, you should use (no ! in the closing tag). The reason it worked in >> Firefox is that it interprets *any* instance of "--" as a closing comment tag. As far as I know, >> all other browsers will wait until they get the standard "-->". > Firefox gets it right since these ("--"

Re: [WSG] Comment mark

2007-12-11 Thread Michael Horowitz
Ultimately IE is "right" in that you can never tell a client their site doesn't work in IE but it fits the written technical standards. A client will always prefer a non web standard site that works in IE to one that is technically correct but errors out in the worlds most popular browser. Mic

[WSG] Downloading a WAV

2007-12-11 Thread Hayden's Harness Attachment
I appologize if this is off topic. On a web site I would like to create an accessible link that will download a WAV file to a user's computer to pplay in their own media player. I am only aware of . any help and comments welcome? Angus

Re: [WSG] Downloading a WAV

2007-12-11 Thread David Dorward
On 12 Dec 2007, at 05:39, Hayden's Harness Attachment wrote: I appologize if this is off topic. On a web site I would like to create an accessible link that will download a WAV file to a user's computer to pplay in their own media player. I am only aware of href="" title="">. any help and co