Re: Selectors Tests

Brad Kemper wrote:
>> So should an <input type="text" style="display: none"> match 
>> :disabled, by that reasoning?
> 
> Is that a purely philosophical question, or does it matter somehow? 
> Given that it is not rendered and takes up no space, and that it will 
> not be disabled if display changes to something other than "none", then 
> matching or not would seem to make little or no difference.

HTML:

   <input type="text" style="display: none">
   <div>What color is this text?</div>

CSS:

   div { color: red; }
   input[text]:enabled + div { color: green; }

What color is the text?

-Boris

Received on Thursday, 30 October 2008 04:50:52 UTC