Does Firefox not understand COLGROUP and COL? 
June 6th, 2006, 07:15 PM
| | |
Been trying to specify text alignment within specific
columns in an html 4 strict page. According to the
w3c specs,
<TABLE border="1">
<COLGROUP>
<COL>
<COL align="char" char=".">
</COLGROUP>
<THEAD>
<TR><TH>Vegetable <TH>Cost per kilo
<TBODY>
<TR><TD>Lettuce <TD>$1
<TR><TD>Silver carrots <TD>$10.50
<TR><TD>Golden turnips <TD>$100.30
</TABLE>
should cause the numeric values to align themselves
vertically with the decimal point all at the same
horizontal location. Neither Firefox or Safari do this.
Is this a case of the browsers in question simply not
following the standard, or is there some twist in the
documentation that I've missed?
Can't get this to work using stylesheets either - if
I want anything other than default text alignment in a
specific column, I have to apply it separately for each
td element in that column.
The page I'm actually trying to get to work is this
one: http://www.chem.utoronto.ca/courseno...7/outline.html
which validates fine, but stubbornly refuses to centre the
entries in the "Section" column no matter what I do _unless_
if I align each td individually. I was hoping not to do that... | 
June 6th, 2006, 09:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <no.email-DC9149.14054806062006@news1.chem.utoronto.ca>,
David Stone <no.email@domain.invalid> wrote:
[color=blue]
> Been trying to specify text alignment within specific
> columns in an html 4 strict page. According to the
> w3c specs,[/color]
Never mind - after poking around the bugzilla pages, it appears
to be the case that NONE of the Mozilla-based browsers implement
COLGROUP and COL as per html 4.01 specs. Given that the problems
I enountered were raised in a bug report several years ago, and are
still not fixed, I'm going to assume that they likely never will be.
This is one of the things where IE follows the standard, and
Mozilla/Firefox/etc don't.
So if you want entries in a column to be centred, and you want
that to be rendered in Mozilla-based browsers, you have to
apply the alignment to each cell individually _regardless_ of
whether you use html/css or just plain html.
The next time someone tells me I should be standards-compliant,
I think I shall just blow a big fat raspberry at them :P | 
June 6th, 2006, 10:25 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Tue, 6 Jun 2006, David Stone wrote:
[color=blue]
> In article <no.email-DC9149.14054806062006@news1.chem.utoronto.ca>,
> David Stone <no.email@domain.invalid> wrote:
>[color=green]
> > Been trying to specify text alignment within specific
> > columns in an html 4 strict page. According to the
> > w3c specs,[/color]
>
> Never mind - after poking around the bugzilla pages, it appears
> to be the case that NONE of the Mozilla-based browsers implement
> COLGROUP and COL as per html 4.01 specs.[/color]
Indeed. It was discussed on usenet only a few days ago, and is
reportedly the oldest non-fixed bug in Moz-family browsers. Hmmm, ok,
the discussion was in alt.html
[color=blue]
> This is one of the things where IE follows the standard, and[/color]
/few\[color=blue]
> Mozilla/Firefox/etc don't.[/color]
OK so far...
[color=blue]
> So if you want entries in a column to be centred, and you want
> that to be rendered in Mozilla-based browsers, you have to
> apply the alignment to each cell individually _regardless_ of
> whether you use html/css or just plain html.[/color]
Not quite true. Since Mozilla-based browsers understand enough of
CSS2, you can do this via a stylesheet, as was recently discussed http://groups.google.co.uk/group/alt...b2a487ec8e02b4
[color=blue]
> The next time someone tells me I should be standards-compliant,
> I think I shall just blow a big fat raspberry at them :P[/color]
Nevertheless, it doesn't pay off in the long-term to keep relying on
browser bugs. In this case, you just need two sets of
specification-conforming settings, and you'll pretty much cover the
field. | 
June 7th, 2006, 08:45 AM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <no.email-3D621A.16340706062006@news1.chem.utoronto.ca>,
David Stone <no.email@domain.invalid> wrote:
[color=blue]
> In article <no.email-DC9149.14054806062006@news1.chem.utoronto.ca>,
> David Stone <no.email@domain.invalid> wrote:
>[color=green]
> > Been trying to specify text alignment within specific
> > columns in an html 4 strict page. According to the
> > w3c specs,[/color]
>
> Never mind - after poking around the bugzilla pages, it appears
> to be the case that NONE of the Mozilla-based browsers implement
> COLGROUP and COL as per html 4.01 specs. Given that the problems
> I enountered were raised in a bug report several years ago, and are
> still not fixed, I'm going to assume that they likely never will be.[/color]
A reasonable assumption.
[color=blue]
> This is one of the things where IE follows the standard, and
> Mozilla/Firefox/etc don't.[/color]
The spec is unsound at that point.
--
Henri Sivonen hsivonen@iki.fi http://hsivonen.iki.fi/
Mozilla Web Author FAQ: http://mozilla.org/docs/web-developer/faq.html | 
June 7th, 2006, 01:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <Pine.LNX.4.64.0606062218420.1815@ppepc87.ph.gla.a c.uk>,
"Alan J. Flavell" <flavell@physics.gla.ac.uk> wrote:
[color=blue]
> On Tue, 6 Jun 2006, David Stone wrote:
>[color=green]
> > In article <no.email-DC9149.14054806062006@news1.chem.utoronto.ca>,
> > David Stone <no.email@domain.invalid> wrote:
> >[color=darkred]
> > > Been trying to specify text alignment within specific
> > > columns in an html 4 strict page. According to the
> > > w3c specs,[/color]
> >
> > Never mind - after poking around the bugzilla pages, it appears
> > to be the case that NONE of the Mozilla-based browsers implement
> > COLGROUP and COL as per html 4.01 specs.[/color]
>
> Indeed. It was discussed on usenet only a few days ago, and is
> reportedly the oldest non-fixed bug in Moz-family browsers. Hmmm, ok,
> the discussion was in alt.html
>[color=green]
> > This is one of the things where IE follows the standard, and[/color]
> /few\[color=green]
> > Mozilla/Firefox/etc don't.[/color][/color]
See my earlier post about applying a border to an object (in my
case, a Flash object). That doesn't work correctly in Moz-family
browsers either.
[color=blue]
> OK so far...
>[color=green]
> > So if you want entries in a column to be centred, and you want
> > that to be rendered in Mozilla-based browsers, you have to
> > apply the alignment to each cell individually _regardless_ of
> > whether you use html/css or just plain html.[/color]
>
> Not quite true. Since Mozilla-based browsers understand enough of
> CSS2, you can do this via a stylesheet, as was recently discussed
> http://groups.google.co.uk/group/alt...4b2a487ec8e02b
> 4[/color]
I looked at that. It's a bit more work than I care for with my particular
table instance. Curiously enough, the background colour of a COLGROUP
is one of the things that has supposedly been fixed, at least for the
current build. (Well, as near as I can understand what bugzilla seems
to be saying: https://bugzilla.mozilla.org/show_bug.cgi?id=4510)
I ended up adding a class declaration to each td that needed
special formatting. One of the articles in the cited thread suggests
selecting the entire column in dreamweaver and then setting the
desired attributes. When I tried this, dreamweaver inserted a styled
div into each td which, IMO, is even worse.
[color=blue]
>[color=green]
> > The next time someone tells me I should be standards-compliant,
> > I think I shall just blow a big fat raspberry at them :P[/color]
>
> Nevertheless, it doesn't pay off in the long-term to keep relying on
> browser bugs. In this case, you just need two sets of
> specification-conforming settings, and you'll pretty much cover the
> field.[/color]
I don't see how I'm "relying on browser bugs"? I found a standards-
compliant solution that works on all the browsers I tested. My biggest
beef is that I wasted over 3 hours trying to figure why FF wouldn't do
what it was supposedly meant to do... | 
June 7th, 2006, 01:25 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Tue, 6 Jun 2006, David Stone wrote:
[color=blue]
> <TR><TH>Vegetable <TH>Cost per kilo[/color]
"Kilo" means 1000. I think you mean "kilogram". http://physics.nist.gov/cuu/Units/ | 
June 7th, 2006, 02:35 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
David Stone wrote:[color=blue]
> In article <Pine.LNX.4.64.0606062218420.1815@ppepc87.ph.gla.a c.uk>,
> "Alan J. Flavell" <flavell@physics.gla.ac.uk> wrote:
>[color=green]
>> On Tue, 6 Jun 2006, David Stone wrote:
>>[color=darkred]
>>> In article <no.email-DC9149.14054806062006@news1.chem.utoronto.ca>,
>>> David Stone <no.email@domain.invalid> wrote:
>>>
>>>> Been trying to specify text alignment within specific
>>>> columns in an html 4 strict page. According to the
>>>> w3c specs,
>>> Never mind - after poking around the bugzilla pages, it appears
>>> to be the case that NONE of the Mozilla-based browsers implement
>>> COLGROUP and COL as per html 4.01 specs.[/color]
>> Indeed. It was discussed on usenet only a few days ago, and is
>> reportedly the oldest non-fixed bug in Moz-family browsers. Hmmm, ok,
>> the discussion was in alt.html
>>[color=darkred]
>>> This is one of the things where IE follows the standard, and[/color]
>> /few\[color=darkred]
>>> Mozilla/Firefox/etc don't.[/color]
>>
>> Not quite true. Since Mozilla-based browsers understand enough of
>> CSS2, you can do this via a stylesheet, as was recently discussed
>> http://groups.google.co.uk/group/alt...4b2a487ec8e02b
>> 4[/color]
>
> I looked at that. It's a bit more work than I care for with my particular
> table instance. Curiously enough, the background colour of a COLGROUP
> is one of the things that has supposedly been fixed, at least for the
> current build. (Well, as near as I can understand what bugzilla seems
> to be saying: https://bugzilla.mozilla.org/show_bug.cgi?id=4510)[/color]
I agree that col align & valign should be implemented, but now that you
can use, eg, td:first-child+td+td+td+td to select the 5th column, how is
that too much work ? If you wanted the 95th column it would be a bit
clunky, but doable. Add to that a table id or class, if you need to
distinguish between tables, and you're all set - no need for html td
attributes.
Two standards compliant solutions: one for ie, and one for the gecko
family - each one or two lines of code.
There seems to be some suggestion that the bug is (finally) being worked
on: see https://bugzilla.mozilla.org/show_bug.cgi?id=915
(and if you care, vote for it).
Chris | 
June 7th, 2006, 02:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article
<Pine.GSO.4.44.0606071423580.1624-100000@s5b004.rrzn.uni-hannover.de>,
Andreas Prilop <nhtcapri@rrzn-user.uni-hannover.de> wrote:
[color=blue]
> On Tue, 6 Jun 2006, David Stone wrote:
>[color=green]
> > <TR><TH>Vegetable <TH>Cost per kilo[/color]
>
> "Kilo" means 1000. I think you mean "kilogram".
> http://physics.nist.gov/cuu/Units/[/color]
Don't tell me, tell the authors of the W3C HTML 4 spec!
Although "kilo" is a very common abbreviation of kilogram.
If you insist on being pedantic, you will also have to take
up your argument with the Oxford English Dictionary - good
luck! | 
June 7th, 2006, 02:55 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Wed, 7 Jun 2006, David Stone wrote:
[color=blue]
> "Alan J. Flavell" <flavell@physics.gla.ac.uk> wrote:
>[color=green]
> > Not quite true. Since Mozilla-based browsers understand enough of
> > CSS2, you can do this via a stylesheet, as was recently discussed
> > http://groups.google.co.uk/group/alt...4b2a487ec8e02b
> > 4[/color]
>
> I looked at that. It's a bit more work than I care for with my
> particular table instance.[/color]
Seems quite a modest amount of work.
[color=blue]
> Curiously enough, the background colour of a COLGROUP is one of the
> things that has supposedly been fixed, at least for the current
> build. (Well, as near as I can understand what bugzilla seems to be
> saying: https://bugzilla.mozilla.org/show_bug.cgi?id=4510)[/color]
But that's easy to fix: it only needs for the background colour to be
established on the col or colgroup element, and then allowed to "shine
through" all the elements (tr, td, whatever) which come later. And
that's their natural inclination, if their b.g colour is not
explicitly styled.
Whereas, getting HTML attributes of col and colgroup to percolate down
to the cells calls for some kind of action at a distance, and the
specification is very much at odds with the concepts of CSS, so you
have two different languages trying to pull in different directions.
It's frankly a mess, and I have some sympathy with the implementers
here.
[color=blue][color=green][color=darkred]
> > > The next time someone tells me I should be standards-compliant,
> > > I think I shall just blow a big fat raspberry at them :P[/color]
> >
> > Nevertheless, it doesn't pay off in the long-term to keep relying
> > on browser bugs. In this case, you just need two sets of
> > specification-conforming settings, and you'll pretty much cover
> > the field.[/color]
>
> I don't see how I'm "relying on browser bugs"?[/color]
I don't see how I was suggesting that you *were*. You were talking
about blowing some *future* raspberry at the specifications, and I was
cautioning against the consequences of doing that.
ttfn | 
June 7th, 2006, 02:55 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Andreas Prilop wrote:[color=blue]
> On Tue, 6 Jun 2006, David Stone wrote:
>[color=green]
>> <TR><TH>Vegetable <TH>Cost per kilo[/color]
>
> "Kilo" means 1000. I think you mean "kilogram".
> http://physics.nist.gov/cuu/Units/
>[/color]
You think wrong. SI Units are for scientists, not grocers. "Kilo" as a
standalone word means "kilogramme". http://www.wordreference.com/definition/kilo
--
Jack. | 
June 7th, 2006, 03:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <Pine.LNX.4.64.0606071446130.7218@ppepc20.ph.gla.a c.uk>,
"Alan J. Flavell" <flavell@physics.gla.ac.uk> wrote:
[color=blue]
> On Wed, 7 Jun 2006, David Stone wrote:
>[color=green][color=darkred]
> > > > The next time someone tells me I should be standards-compliant,
> > > > I think I shall just blow a big fat raspberry at them :P
> > >
> > > Nevertheless, it doesn't pay off in the long-term to keep relying
> > > on browser bugs. In this case, you just need two sets of
> > > specification-conforming settings, and you'll pretty much cover
> > > the field.[/color]
> >
> > I don't see how I'm "relying on browser bugs"?[/color]
>
> I don't see how I was suggesting that you *were*. You were talking
> about blowing some *future* raspberry at the specifications, and I was
> cautioning against the consequences of doing that.[/color]
Well, that's how I interpreted your first sentence in the paragraph
cited above. Not to worry! And, I fully intend to blow big fat
raspberries, not at the standards, but at those who insist that
$BROWSER_DU_JOUR should be used because it's "fully standards compliant"
- I'll consign that to the same folklore bin as "you should never use
tables"! | 
June 7th, 2006, 03:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Wed, 7 Jun 2006, Jack wrote:
[color=blue][color=green]
>> "Kilo" means 1000. I think you mean "kilogram".
>> http://physics.nist.gov/cuu/Units/[/color]
>
> You think wrong. SI Units are for scientists, not grocers.[/color]
And grocer's are expert's.
[color=blue]
> "Kilo" as a standalone word means "kilogramme".[/color]
The legal spelling in the UK has been "kilogram" for some
30 years. | 
June 7th, 2006, 03:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Andreas Prilop wrote:
[color=blue]
> On Wed, 7 Jun 2006, Jack wrote:
>[color=green][color=darkred]
>>> "Kilo" means 1000. I think you mean "kilogram".
>>> http://physics.nist.gov/cuu/Units/[/color]
>>
>> You think wrong. SI Units are for scientists, not grocers.[/color]
>
> And grocer's are expert's.[/color]
There are two apostrophes too many in that sentence.
[color=blue][color=green]
>> "Kilo" as a standalone word means "kilogramme".[/color]
>
> The legal spelling in the UK has been "kilogram" for some
> 30 years.[/color]
Legal is still not what the grocers use. http://dictionary.cambridge.org/defi...3678&dict=CALD
Same as in Dutch really, I don't go to market to buy a kilogram of
anything - just a kilo will do :-)
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/
Now playing: - Track 2 | 
June 7th, 2006, 03:35 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article
<Pine.GSO.4.44.0606071607270.1764-100000@s5b004.rrzn.uni-hannover.de>,
Andreas Prilop <nhtcapri@rrzn-user.uni-hannover.de> writes[color=blue][color=green]
>> You think wrong. SI Units are for scientists, not grocers.[/color]
>
>And grocer's are expert's.[/color]
My fave is the grocer who sold Golden Deliciou's apples!! Yup, true!!
--
Alan Silver
(anything added below this line is nothing to do with me) | 
June 7th, 2006, 03:35 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <gciixhwyftkd.9wk6m20v8d3b$.dlg@40tude.net>, Els
<els.aNOSPAM@tiscali.nl> writes[color=blue][color=green]
>> And grocer's are expert's.[/color]
>
>There are two apostrophes too many in that sentence.[/color]
It was a joke. In the UK, there is a very widespread tendency amongst
greengrocers to add an apostrophe before the "s" on the end of a plural
word. Andreas was being sarcastic ;-)
--
Alan Silver
(anything added below this line is nothing to do with me) | 
June 7th, 2006, 03:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <e66kk6$l7g$1$8302bc10@news.demon.co.uk>,
Chris Sharman <chris.sharman@sorry.nospam> wrote:
[snip][color=blue]
>
> Two standards compliant solutions: one for ie, and one for the gecko
> family - each one or two lines of code.[/color]
I guess my personal preference is for one solution that works
(reasonably well) for any of the most common browsers, but doesn't
generate errors when parsing through the W3C validator.
[color=blue]
> There seems to be some suggestion that the bug is (finally) being worked
> on: see https://bugzilla.mozilla.org/show_bug.cgi?id=915
> (and if you care, vote for it).[/color]
I care; I did. Although you have to wonder how long it will take
_after_ the problem has been fixed, before the number of pre-fix
browsers still in use drops below the significance threshold. There
are still quite a number of IE 5 installations locally, for example! | 
June 7th, 2006, 03:55 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Alan Silver wrote:
[color=blue]
> In article <gciixhwyftkd.9wk6m20v8d3b$.dlg@40tude.net>, Els
> <els.aNOSPAM@tiscali.nl> writes[color=green][color=darkred]
>>> And grocer's are expert's.[/color]
>>
>>There are two apostrophes too many in that sentence.[/color]
>
> It was a joke. In the UK, there is a very widespread tendency amongst
> greengrocers to add an apostrophe before the "s" on the end of a plural
> word.[/color]
:-)
Didn't know that!
They do in Holland too though, but here it's correct grammar ;-)
[color=blue]
> Andreas was being sarcastic ;-)[/color]
It did 'sound' sarcastic, but I couldn't find any reference for it
(not knowing much about British grocers)...
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/ | 
June 7th, 2006, 04:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <no.email-6787B5.10123107062006@news1.chem.utoronto.ca>,
David Stone <no.email@domain.invalid> writes[color=blue]
>Although you have to wonder how long it will take
> _after_ the problem has been fixed, before the number of pre-fix
>browsers still in use drops below the significance threshold. There
>are still quite a number of IE 5 installations locally, for example![/color]
Yeah, but the FF situation is notably different for two reasons. First,
FF users tend to be far more technosavvy than IE users, and so are far
more likely to upgrade. Second, IE (to my amazement) doesn't encourage
the user to upgrade at all. FF has quite an arrogant attitude to this
and will nag you incessantly when a new version is available. Put both
of these together and you find that FF users are far more likely to be
using the latest (or a very recent) version than IE users.
Ta ra
--
Alan Silver
(anything added below this line is nothing to do with me) | 
June 7th, 2006, 04:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Andreas Prilop wrote:[color=blue]
> On Wed, 7 Jun 2006, Jack wrote:
>[color=green][color=darkred]
>>> "Kilo" means 1000. I think you mean "kilogram".
>>> http://physics.nist.gov/cuu/Units/[/color]
>> You think wrong. SI Units are for scientists, not grocers.[/color]
>
> And grocer's are expert's.
>[color=green]
>> "Kilo" as a standalone word means "kilogramme".[/color]
>
> The legal spelling in the UK has been "kilogram" for some
> 30 years.
>[/color]
ACK. My misteak.
--
Jack. | 
June 7th, 2006, 04:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Els wrote:[color=blue]
> Andreas Prilop wrote:
>[color=green]
>> On Wed, 7 Jun 2006, Jack wrote:
>>[color=darkred]
>>>> "Kilo" means 1000. I think you mean "kilogram".
>>>> http://physics.nist.gov/cuu/Units/
>>> You think wrong. SI Units are for scientists, not grocers.[/color]
>> And grocer's are expert's.[/color]
>
> There are two apostrophes too many in that sentence.[/color]
Tho's are known as grocers apostrophe's.
--
Jack. | 
June 7th, 2006, 04:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Els wrote:[color=blue]
> Alan Silver wrote:
>[color=green]
>> In article <gciixhwyftkd.9wk6m20v8d3b$.dlg@40tude.net>, Els
>> <els.aNOSPAM@tiscali.nl> writes[color=darkred]
>>>> And grocer's are expert's.
>>> There are two apostrophes too many in that sentence.[/color]
>> It was a joke. In the UK, there is a very widespread tendency amongst
>> greengrocers to add an apostrophe before the "s" on the end of a plural
>> word.[/color]
>
> :-)
> Didn't know that!
> They do in Holland too though, but here it's correct grammar ;-)
>[color=green]
>> Andreas was being sarcastic ;-)[/color]
>
> It did 'sound' sarcastic, but I couldn't find any reference for it
> (not knowing much about British grocers)...
>[/color]
Eats Shoots And Leaves by Lynn Truss has a whole chapter on the misuse
of apostrophes. Example:
Carrot's 59p/kilo
--
Jack. | 
June 7th, 2006, 04:45 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Alan Silver wrote:[color=blue]
> In article
> <Pine.GSO.4.44.0606071607270.1764-100000@s5b004.rrzn.uni-hannover.de>,
> Andreas Prilop <nhtcapri@rrzn-user.uni-hannover.de> writes[color=green][color=darkred]
>>> You think wrong. SI Units are for scientists, not grocers.[/color]
>>
>> And grocer's are expert's.[/color]
>
> My fave is the grocer who sold Golden Deliciou's apples!! Yup, true!!
>[/color]
My fave is the grocer with sign saying "Carrot's", whose name was Mr.
Carrot.
--
Jack. | 
June 7th, 2006, 05:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <e66s4a$rn4$3$8302bc10@news.demon.co.uk>, Jack
<mrdemeanour@nospam.jackpot.uk.net> writes[color=blue]
>Carrot's 59p/kilo[/color]
Eh up, no self respecting English grocer would price in kilos!! We still
stick proudly to lbs and ozs mate!!
--
Alan Silver
(anything added below this line is nothing to do with me) | 
June 7th, 2006, 06:05 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Wed, 07 Jun 2006 17:00:27 +0100, Alan Silver
<alan-silver@nospam.thanx.invalid> wrote:
[color=blue]
> Eh up, no self respecting English grocer would price in kilos!! We still
> stick proudly to lbs and ozs mate!![/color]
Not if you want to avoid being hanged from Villeneuve's column you don't: http://news.bbc.co.uk/1/hi/uk/584931.stm http://news.bbc.co.uk/1/hi/business/845427.stm http://news.bbc.co.uk/1/hi/uk/1269043.stm http://news.bbc.co.uk/1/hi/england/1826503.stm
The best you get in shops these days is the price in pounds written in
small print underneath the metric prices. Many traders did this at first,
but since 2000 most have given up because it's too much hassle. And while
many market stalls will silently serve you "a pound of apples" when you
ask, if you look carefully they actually weigh up 454 grammes and record
that in the paperwork (well, al least there wive's do because as we all
no, British greengrocer's can not reed and wright).
And have you noticed how the new pound coin is a clone of the Euro? They
even changed the base metal to match and use Euroesque artwork on the face
(albeit one of Brunel's bridges though no doubt that will change to the
Eiffel Tower in the next revision). | 
June 7th, 2006, 07:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <op.tascfccrtw96vg@eudaemonic.com>, Bert Lancaster
<nospam@yahoo.com> writes[color=blue]
>And have you noticed how the new pound coin is a clone of the Euro?
>They even changed the base metal to match and use Euroesque artwork on
>the face (albeit one of Brunel's bridges though no doubt that will
>change to the Eiffel Tower in the next revision).[/color]
I'm glad to say I've never actually seen a Euro!!
Sad that the old lbs and ozs went though. We still use them at home, and
I reckon we aren't alone. Mind you, my wife uses one of those
old-fashioned pan scales with metal weights!!
--
Alan Silver
(anything added below this line is nothing to do with me) | 
June 7th, 2006, 08:25 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Bert Lancaster wrote:
[color=blue]
> And have you noticed how the new pound coin is a clone of the Euro?[/color]
Not to mention the introduction of the 2 pound coin which resembles
the two Euro coin. (Or did I overlook its existence in the pre-Euro
days?)
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/
Now playing: Dr. Feelgood - Back In The Night | 
June 8th, 2006, 10:45 AM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Wed, 7 Jun 2006, Els wrote:
[color=blue]
> It did 'sound' sarcastic, but I couldn't find any reference for it
> (not knowing much about British grocers)...[/color]
They are green. http://www.google.com/search?q=greengrocer+apostrophe | 
June 8th, 2006, 01:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
Andreas Prilop wrote:
[color=blue]
> On Wed, 7 Jun 2006, Els wrote:
>[color=green]
>> It did 'sound' sarcastic, but I couldn't find any reference for it
>> (not knowing much about British grocers)...[/color]
>
> They are green.
> http://www.google.com/search?q=greengrocer+apostrophe[/color]
Second result even mentions the Dutch!
<quote>
Is there an apostrophe in the plural of pizza?
No. (No, no, no!) In Dutch maybe, but not in English.
</quote>
Never thought Dutch grammar would make it into an Oxford Dictionary,
even if it's AskOxford.com :-)
--
Els http://locusmeus.com/
accessible web design: http://locusoptimus.com/ | 
June 9th, 2006, 03:45 AM
| | | | re: Does Firefox not understand COLGROUP and COL?
I just tried doing a table with colgroup and col and a few other things
I had read about on the W3C site, only to discover that they didn't
appear to work in Safari either. Given up in disgust.
Gone back to using align="left" on the th elements and align="right" on
the td elements, since the W3 validator doesn't complain about that.
Since I usually generate a table with a shell script, having the
attributes in the html is easier than worrying about whether any
specific style sheet has the style I want for a particular table. I only
have a half dozen very simple tables on my site, so using simple markup
seems a lot easier than sticking in theader and tbody and that sort of
stuff.
-- http://www.ericlindsay.com | 
June 9th, 2006, 08:35 AM
| | | | re: Does Firefox not understand COLGROUP and COL?
On Fri, 9 Jun 2006, Eric Lindsay wrote:
[color=blue]
> I just tried doing a table with colgroup and col and a few other things
> I had read about on the W3C site, only to discover that they didn't
> appear to work in Safari either.[/color]
I think you need to be more discerning in your evaluation of "does not
appear to work". col and colgroup are specified to do quite a number
of things in HTML, and to have a small number of properties applied to
them in CSS. MSIE implements some extra CSS properties that it isn't
supposed to; Mozilla fails to support some HTML attributes that,
according to the spec, it ought to. So it's not ideal, but it isn't
that col and colgroup don't work.
[color=blue]
> Gone back to using align="left" on the th elements and align="right"
> on the td elements, since the W3 validator doesn't complain about
> that.[/color]
That's an unfortunate way to put it. The validator is only calling
attention to features of what the specification says. It would be
better to follow the specification, as far as possible, rather than
merely doing things because of what the validator does or doesn't
"complain about".
But yes, alignment attributes are still available on table cells, even
in "strict" HTML. That can tend to bloat the HTML, though, if you
have a lot of it. | 
June 9th, 2006, 05:55 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In article <qLNNETgeFuhEFwnP@nospamthankyou.spam>, Alan Silver write:[color=blue]
>In article <gciixhwyftkd.9wk6m20v8d3b$.dlg@40tude.net>, Els <els.aNOSPAM@tiscali.nl> writes[color=green][color=darkred]
>>> And grocer's are expert's.[/color]
>>
>>There are two apostrophes too many in that sentence.[/color]
>
>It was a joke. In the UK, there is a very widespread tendency amongst
>greengrocers to add an apostrophe before the "s" on the end of a plural[/color]
This is entirely too common in the US, as well.
--
Michael F. Stemper
#include <Standard_Disclaimer>
If this is our corporate opinion, you will be billed for it. | 
June 10th, 2006, 12:25 AM
| | | | re: Does Firefox not understand COLGROUP and COL?
Michael Stemper wrote:[color=blue]
> In article <qLNNETgeFuhEFwnP@nospamthankyou.spam>, Alan Silver write:[color=green]
>> In article <gciixhwyftkd.9wk6m20v8d3b$.dlg@40tude.net>, Els <els.aNOSPAM@tiscali.nl> writes[color=darkred]
>>>> And grocer's are expert's.
>>> There are two apostrophes too many in that sentence.[/color]
>> It was a joke. In the UK, there is a very widespread tendency amongst
>> greengrocers to add an apostrophe before the "s" on the end of a plural[/color]
>
> This is entirely too common in the US, as well.
>[/color]
It's also common to see: "She sat between him and I."
Common usage is not necessarily correct usage. Instead, it merely
indicates how common illiteracy is.
--
David E. Ross
<http://www.rossde.com/>
Concerned about someone (e.g., Pres. Bush) snooping
into your E-mail? Use PGP.
See my <http://www.rossde.com/PGP/> | 
June 10th, 2006, 12:25 AM
| | | | re: Does Firefox not understand COLGROUP and COL?
David Stone wrote:[color=blue]
> In article <no.email-DC9149.14054806062006@news1.chem.utoronto.ca>,
> David Stone <no.email@domain.invalid> wrote:
>[color=green]
>> Been trying to specify text alignment within specific
>> columns in an html 4 strict page. According to the
>> w3c specs,[/color]
>
> Never mind - after poking around the bugzilla pages, it appears
> to be the case that NONE of the Mozilla-based browsers implement
> COLGROUP and COL as per html 4.01 specs. Given that the problems
> I enountered were raised in a bug report several years ago, and are
> still not fixed, I'm going to assume that they likely never will be.
>
> This is one of the things where IE follows the standard, and
> Mozilla/Firefox/etc don't.
>
> So if you want entries in a column to be centred, and you want
> that to be rendered in Mozilla-based browsers, you have to
> apply the alignment to each cell individually _regardless_ of
> whether you use html/css or just plain html.
>
> The next time someone tells me I should be standards-compliant,
> I think I shall just blow a big fat raspberry at them :P[/color]
For those who might be interested, it's bug #915. See
<https://bugzilla.mozilla.org/show_bug.cgi?id=915>.
--
David E. Ross
<http://www.rossde.com/>
Concerned about someone (e.g., Pres. Bush) snooping
into your E-mail? Use PGP.
See my <http://www.rossde.com/PGP/> | 
June 11th, 2006, 10:15 PM
| | | | re: Does Firefox not understand COLGROUP and COL?
In message
<Pine.GSO.4.44.0606071607270.1764-100000@s5b004.rrzn.uni-hannover.de>,
Andreas Prilop <nhtcapri@rrzn-user.uni-hannover.de> writes
[color=blue]
>The legal spelling in the UK has been "kilogram" for some 30 years.[/color]
Yes, but who weighs their lawyers?
--
Andy Mabbett
Say "NO!" to compulsory ID Cards: <http://www.no2id.net/>
Free Our Data: <http://www.freeourdata.org.uk> |  | | | | /bytes/about
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 225,662 network members.
|