CSS inheritance, aliases and other cool stuff

Posted by emzero on Stack Overflow See other posts from Stack Overflow or by emzero
Published on 2010-04-27T04:03:05Z Indexed on 2010/04/27 4:13 UTC
Read the original article Hit count: 434

Filed under:
|
|

The other day I was randomly browsing the web and I found some program that lets you write CSS aliases and other cool stuff (which I can't remember right now).

As an example, I remember you can do something like this:

.myclass
{
   background-color: red;
   greenfont
}

where greenfont was defined somewhere else as somekind of alias

greenfont { color: green; }

Then the program will generate the resulting CSS based on the alias and other stuff.

Does anyone has used this? Or did I dreamed about it? I cannot find it now :P

© Stack Overflow or respective owner

Related posts about css

Related posts about alias