Is compiled scss using compass keeping the order of declarations?
Is compass (because I guess it's the way compass works that decides that) guaranteeing the order of properties?
Of course it matters only for cases where 2 or more definitions have the same "syntaxic" weight, like:
.a {
.b.c {
/*stuff*/
}
.b.d {
/*stuff with same weight*/
}
}
(considering elements .a .b
)
This above is just an example, I would like to know if order is going to be kept in the general case.