我遇到了 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!
谢谢!