Does compiled SCSS using Compass preserve the order of declarations?
Can Compass guarantee the order of properties (assuming it's the way Compass operates that determines this)?
This is mainly important when there are multiple definitions with the same level of importance, like in the following example:
.a {
.b.c {
/* code */
}
.b.d {
/* code with same level of importance */
}
}
(considering elements .a .b
)
The above is just an illustration; I am interested in knowing if the order is consistently maintained in general cases.