[css-d] Syntax question

2005-09-01 Thread Bert Mahoney
Hi, When trying to style children selectors should space come between the names? For example which is correct: div.fooBar #FOO #BAR 0r div.fooBar#FOO#BAR ?? Thanks, Bert __ css-discuss [EMAIL PROTECTED]

Re: [css-d] Syntax question

2005-09-01 Thread Ricky Zhou
For example which is correct: div.fooBar #FOO #BAR 0r div.fooBar#FOO#BAR The first one is correct. The second would select a div with a class of fooBar and an id of both FOO and BAR (not sure if that's even allowed). Ricky