作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我在新生成的Rails 3.1应用程序中使用Yahoo的reset.css。给定以下应用程序结构:
- myapp
- app
- assets
- stylesheets
- application.css
- ...
- vendor
- assets
- stylesheets
- yahoo
- reset.css
- fonts.css
application.css
指令将RESET.css文件包括在我的
require_directory
中,以
require_tree argument must be a directory
结尾。
/*
*= require_directory ./yahoo
*/
app/assets
就像一个魅力。
最佳答案
好吧,@josh answered my question:
似乎我需要某种代理文件(yahoo.css
),它将包含在我的application.css
中:
/*
*= require_directory ./yahoo
*/
关于ruby-on-rails - sprockets require_directory问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7312653/
我是一名优秀的程序员,十分优秀!