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?