これは、レール3.1の開発環境では、cssがアルファベット順にロードされていて、望む順番ではないことがわかります。特定のCSSファイルを最後に置いて、前にクラスに与えられたスタイルを上書きします。どうすればそれを達成できますか?Rails 3.1特定の順序でCSSをロード
/*
* This is a manifest file that'll automatically include all the stylesheets available in this directory
* and any sub-directories. You're free to add application-wide styles to this file and they'll appear at
* the top of the compiled file, but it's generally better to create a new file per style scope.
*= require_self
*= require reset
*= require groups
*= require the_last
*
最も簡単なトリックは名前を変更することです。 'zzz-the_last.css' –
私は今同じことをしました!しかし、それはハックです! Railsの方法はありますか? – phoenixwizard