I see that in development environment in rails 3.1 the css are loaded in alphabetic order and not in the order I want. I want a particular css file to be at the end so it over-writes any styles given to the class before. How can we achieve that?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
It is better to specify the order of each and every files manually:
|
|||||||||||||||
|
|
You can actually do something like:
in your application.css file. This allows you to specify any number of stylesheets, such as a reset, to come before the tree without having to specify each individual file. The single quotes around reset are optional. Not trying to resurrect an old thread, just thought this might be helpful for some. |
|||
|
|
zzz-the_last.css– Sergio Tulentsev Jan 17 '12 at 7:17