Re: proposal for a new css combinator

Boris Zbarsky wrote:
> On 1/13/10 7:25 AM, Alan Gresley wrote:
>> .focusBlock>header, .focusBlock *>header {
>> // style rules //
>> }
>>
>> or
>>
>> .focusBlock>header, .focusBlock>* header {
>> // style rules //
>> }
> 
> Both of those selectors are exactly equivalent to ".focusBlock header" 
> in terms of what they match.
> 
> -Boris


This is correct for the chained selector strings but not for these 
unchained selectors,

.focusBlock *>header {
// style rules //
}
.focusBlock>* header {
// style rules //
}


with this HTML.


<div class="focusBlock">
   <header>...</header>
   <section>...</section>
   <footer>...</footer>
</div>



-- 
Alan http://css-class.com/

Received on Wednesday, 13 January 2010 17:08:30 UTC