Home › Forums › Other › Mixin LESS not working › Reply To: Mixin LESS not working
July 20, 2014 at 12:15 pm
#175931
Member
Unless there is something specific in LESS (and I’m not familiar with it, I confess)
#outer > .inner;
#outer . .inner();
#outer.inner;
#outer.inner();
Do NOT all do the same thing..this on the other hand,,
// all do the same thing
#outer > .inner;
#outer > .inner();
#outer .inner;
#outer .inner();