[Javascript] separating structure, style, and behavior

Flavio Gomes flavio at economisa.com.br
Mon May 10 14:11:23 CDT 2004


You'll excuse, but this is off-topic. We just discuss JavaScript here, 
not how to sign up third party lists.. ^^

 o.O j/k.. ==> http://www.google.com/search?q=css-d




Terry Riegel wrote:

>> (Isn't this off-topic for this list, though? Wouldn't CSS-D be a 
>> better list for this issue?)
>
>
> Yes it is off-topic. I aplogize. How do I sign up for CSS-D?
>
> Terry Riegel
> -----------------
> MAILKEY: 2524427349
>
>
>
>
> On May 7, 2004, at 10:54 AM, liorean wrote:
>
>> Terry Riegel wrote:
>>
>>> Can anyone explain this to me.
>>> #localnav td p,
>>> #localnav td a:link,
>>> #localnav td a:visited {padding-right: 10px; display: block; color: 
>>> #000000; text-decoration: none;}
>>> #localnav {background-color: #ffffff;}
>>> What does the comma after p and after link mean?
>>
>>
>> It's a selector separator. Instead of writing
>>
>> #localnav td p {padding-right: 10px; display: block; color:
>> #000000; text-decoration: none;}
>> #localnav td a:link {padding-right: 10px; display: block; color:
>> #000000; text-decoration: none;}
>> #localnav td a:visited {padding-right: 10px; display: block; color:
>> #000000; text-decoration: none;}
>>
>> you can place the selectors as a comma separated list and use only 
>> one declaration block. There is a difference, though. If a browser 
>> doesn't support one of the comma separated selectors, it will discard 
>> the entire ruleset, while if you use one ruleset for each selector, 
>> the browser that doesn't support one of the selectors will still 
>> apply the other selectors.
>>
>>
>> (Isn't this off-topic for this list, though? Wouldn't CSS-D be a 
>> better list for this issue?)
>> -- 
>> David "liorean" Andersson
>>
>> ViewStyles, ViewScripts, SwitchStyles and GraphicsInfo bookmarklets:
>> <http://liorean.web-graphics.com/>
>> Hangouts:
>> <http://codingforums.com/> <http://yourmusicforums.com/>
>> _______________________________________________
>> Javascript mailing list
>> Javascript at LaTech.edu
>> https://lists.LaTech.edu/mailman/listinfo/javascript
>>
>
> _______________________________________________
> Javascript mailing list
> Javascript at LaTech.edu
> https://lists.LaTech.edu/mailman/listinfo/javascript



-- 
Flavio Gomes
flavio at economisa.com.br




More information about the Javascript mailing list