scss 文件中的更改不会反映在 css 文件中

发布于 2024-09-25 20:59:32 字数 250 浏览 2 评论 0原文

我希望 .scss 文件中的更改自动反映到 css 文件中。

我正在使用Rails 3。

我将sass文件放置到

我添加的publish/stylesheets/sass文件夹中:

require 'sass/plugin/rack'
use Sass::Plugin::Rack

到config.ru

但是scss样式的更改仍然没有反映到css文件中。

I want changes in my .scss files automatically reflect into css files.

I'm using Rails 3.

I places sass files to publish/stylesheets/sass folder

I've added:

require 'sass/plugin/rack'
use Sass::Plugin::Rack

to config.ru

However changes in scss styles still not reflect into css files.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

意犹 2024-10-02 20:59:32

除非我误解了你的意思或者rails 3发生了一些变化,否则你需要在终端中运行 sass :

sass --watch style.scss:style.css --style compress

Unless I misunderstand you or something's changed with rails 3, you need to have sass running in terminal:

sass --watch style.scss:style.css --style compress
嘴硬脾气大 2024-10-02 20:59:32

看来我错了,即使没有运行,所有工作都正确:

sass --watch style.scss:style.css --style compress

问题与事实有关,scss 中声明的空样式不会反映到 css 中。

例如:

.myclass {
}

当我在其中添加一些属性时,一切都按预期工作。

It seem that I was wrong and all works correct even without running:

sass --watch style.scss:style.css --style compress

The problem was connected with fact, that empty styles declared in scss are not reflected to css.

For example:

.myclass {
}

When I have added some properties inside it everything stark working as expected.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文