Hi!
Something I’d love to have is this type of syntax:
div#myDiv
{
.red { color: red; }
h2 { size: 1.1em; }
h3 { size: 1.0em; font-weight: bold; }
}
i.e. that you are able to cascade it onto children. The markup above would work better than this:
div#myDiv .red { color: red }
div#myDiv h2 { size: 1.1em; }
div#myDiv h3 { size: 1.0em; font-weight: bold; }
in my opinion – it would save time and also make it easier to read. (for example the huge number of times you have to write “ul li” when dealing with 2 or 3-level drop-down menues.