Re: [CSSWG] action 38, CSS Variables

Dave, I have a question related to @variables as we defined it and
media. Imagine the following sheet:

   @variables screen {
     bg: silver;
   }

   @variables print {
     bg: transparent;
   }

   @media screen, print {
     h1 { background-color: var(bg); }
   }

What's the background-color of an h1 here? How did you implement that?

</Daniel>

Received on Monday, 22 March 2010 11:38:36 UTC