All is good and I expect the end result to be:
------------------------
#wrapper {
...
}
#wrapper .header {
...
}
#wrapper .footer {
...
}
but instead i get
------------------------
#wrapper .footer {
...
}
#wrapper .header {
...
}
#wrapper {
...
}
I'm developing a site with total CSS line count being 1.5k+ lines, and
in some cases the order DOES matter. Is there any specific reason why
xCSS prints the parsed CSS backwards?