背景图像渲染问题在轨道4.1

时间:2015-02-23 18:43:31

标签: css ruby-on-rails sass

我无法理解如何解决为什么我的浏览器(谷歌浏览器和Safari)忽略了背景图像。我可以看到在开发工具中正确构建了url,但它被删除了(重要的覆盖仍然在这里失败)。这是我的代码:

body {
  background-image: image-url('blue.jpg') no-repeat center center fixed 
}

图像存储在app / assets / images中。

与往常一样,非常感谢任何帮助。

2 个答案:

答案 0 :(得分:0)

尝试删除image-url并使用url

body {
 background-image: url('blue.jpg') no-repeat center center fixed 
}

答案 1 :(得分:0)

我最终将图像设置为背景而不是背景图像:

body {
  background: asset_url('blue.jpg') no-repeat center center fixed;
  color: ...
  margin: ...
  padding: ...
}

我不明白为什么会这样。