- From: Brad Kemper <brkemper.comcast@gmail.com>
- Date: Wed, 29 Oct 2008 23:53:28 -0700
- To: Boris Zbarsky <bzbarsky@MIT.EDU>
- Cc: www-style <www-style@w3.org>
On Oct 29, 2008, at 9:49 PM, Boris Zbarsky wrote:
> 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
Ah. I see. Thanks for clearing that up.
Received on Thursday, 30 October 2008 06:54:05 UTC