Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 web 应用程序的 css 文件,如何在 Rails 中使用它?我需要将其转换为 scss 还是更少?我该怎么做呢?
您不必将文件转换为 scss/sass/less,您可以按原样使用它。
正如@Mischa 所说,您可以继续使用css。
将您的 css 文件复制到资产/样式表中,然后确保 application.css 包含以下内容
*= require_tree .
这将包括样式表文件夹中的所有文件。