上下文
Rails 4。
问题
我知道之前已经多次询问过,但我无法使用以下的CSS行:
background: image-url("home/smiling.jpg");
我的档案在正确的位置,名字很好。第background-color: red;
行正在运作。
尝试解决方案
搜索。
我试过了rake assets:precompile
。另外rake assets:clean
到目前为止没有运气。
答案 0 :(得分:0)
你可以尝试两件事:
"/home/smiling.jpg"
background-image: url
代替'background:image-url'。 background-image: url("home/smiling.jpg");
该标记在Rails 4.1中适用于我。