0

In LESS i want be able to write some code like this:

article .foo {
    .baa {
       color: red;
       /* what ever magic selector */ html.lt-ie9 {
           color: green;
       }
    }
}

and get this output:

article .foo .baa {
       color: red;
}

html.lt-ie9 article .foo .baa {
       color: green;
}

Is this possible?

Maximilian Ruta
  • 518
  • 7
  • 18

0 Answers0