Re: [WSG] Table header

2005-08-14 Thread Lea de Groot
On Sat, 13 Aug 2005 16:59:01 +0100, Jorge Laranjo wrote: I want to make a table so that the first row will be a HEADER with 3 cells. This: table thead tr thID/ththVar 1/ththVar 2/th /tr /thead tr tdID VALUE/td tdVar 1 value/td

Re: [WSG] Table header

2005-08-14 Thread Patrick H. Lauke
Lea de Groot wrote: The thead tag is the key - If you're using thead, you may as well go all the way and add a tbody as well... table thead tr thID/ththVar 1/ththVar 2/th /tr /thead tbody tr tdID VALUE/td tdVar

[WSG] Re: digest for wsg@webstandardsgroup.org

2005-08-14 Thread Josh Rose
Hello, I have a nav list problem. This is thecss I'm using: .links ul, .links li { list-style: none;} .links li {border: 1px solid #00;border-top: 0px;} .links li.top {border-top: 1px solid #00;} .links li a {color: #00;text-decoration: none;display: block;text-align: center;cursor:

RE: [WSG] Spacing Issue

2005-08-14 Thread John Foliot - WATS.ca
Jeff D. Reid wrote: I joined this list well over two years ago. I have designed sites on my own utilizing tips and suggestions I have gathered from most people on the list and other lists. This is the FIRST time I have had my hands tied as to follow a Graphic Designer/Marketing expert who

Accesskeys (Was RE: [WSG] Re: digest for wsg@webstandardsgroup.org)

2005-08-14 Thread John Foliot - WATS.ca
Josh Rose wrote: What I'm trying to do is have the accesskey underlined, it works fine in Firefox and Opera (wayhey), but in IE 6 the a:first-letter works fine, but a:hover doesn't at all (it does without a:first-letter though) and in Netscape 7 the a:first-letter doesn't work at all (just

RE: [WSG] Table header

2005-08-14 Thread John Foliot - WATS.ca
Patrick H. Lauke wrote: Lea de Groot wrote: The thead tag is the key - If you're using thead, you may as well go all the way and add a tbody as well... table thead tr thID/ththVar 1/ththVar 2/th /tr /thead tbody tr

Re: [WSG] Table header

2005-08-14 Thread David Laakso
Jorge Laranjo wrote: Hi there! I want to make a table so that the first row will be a HEADER with 3 cells. [...] An interesting alternative? Posted on another list a while back by Al Sparber: http://www.projectseven.com/csslab/testing/lists/grid.htm Regards, David Laakso -- David Laakso

Re: [WSG] Table header

2005-08-14 Thread Patrick H. Lauke
David Laakso wrote: An interesting alternative? Posted on another list a while back by Al Sparber: http://www.projectseven.com/csslab/testing/lists/grid.htm Interesting, but structurally dubious and not really suitable based on the original question, which already has thID/ththVar

Re: [WSG] Spacing Issue

2005-08-14 Thread Jeff D. Reid
John Thank you for your reply. This is exactly the type answer I was expecting from the members of this list. It was hard enough to have to ask for assistance knowing full well that I stood the chance of being cremated here. Problem with the OLP Guitars web site is that they hired a marketing

Re: [WSG] Table header

2005-08-14 Thread Terrence Wood
Agreed, the point of standards design is not that tables are bad, but using markup with meaning (a.k.a semantic markup) is better. kind regards Terrence Wood. On 15 Aug 2005, at 3:59 AM, Patrick H. Lauke wrote: David Laakso wrote: An interesting alternative?

[WSG] Screen readers, flash, DOM

2005-08-14 Thread Jan Brasna
Howdy. Maybe strange questions - Do the users of screen readers have flash? (I have no idea for a reason why they shloud) - And do the screen readers read the elements from the document, even if they're not in DOM? The reason I ask this - I'm including a flash header via UFO v1.0 [1], based

Re: [WSG] Logic?

2005-08-14 Thread Mordechai Peller
Prabhath Sirisena wrote: Makes a lot of sense. Floated elements don't take up any space in the container (i.e. the container will not contain them). That's not 100% true. If, for example, the container is also floated, it will expand to contain the float.