0

我遇到了 CSS3 代码和 heroku 的问题。我目前在 heroku 上临时托管我的网站,这段代码似乎不起作用:

#my_footer
{
    margin-top:170px;
    background-color:rgba(17,142,36,0.3); /* added this because of the backgroud */
    border-radius: 3px 3px 3px 3px;
}

特别是这行代码:background-color:rgba(17,142,36,0.3); 奇怪的是它可以在我的本地主机上运行,​​但不能在 heroku 上运行!我使用的是同一个浏览器!

顺便说一句,我的 config/environments/production.rb 中有这个

...
  # Don't fallback to assets pipeline if a precompiled asset is missed
  config.assets.compile = true #changed to true!
...

否则heroku会返回一个错误,如果它是'false'则不显示页面我正在使用twitter bootstrap btw!

谢谢!

4

1 回答 1

1

您可以尝试在本地编译然后尝试推送它,

来自heroku

RAILS_ENV=production bundle exec rake assets:precompile

如果您使用 twitter bootstrap gem,我认为它应该分组在资产中

group :assets do
  gem 'twitter ...'
end
于 2012-06-13T15:19:55.670 回答