すべてのビューに背景画像を追加したいのですが、どうすればよいですか?
コード例を示してください
答えは:
body {background-image:url('/assets/myimage.jpeg'); }
すべてのビューに背景画像を追加したいのですが、どうすればよいですか?
コード例を示してください
答えは:
body {background-image:url('/assets/myimage.jpeg'); }
これは、少なくとも私の「localhost」環境ではうまくいきました。
body {
background-image: url(image_path('photobackground.jpg'));
background-size: cover;
}
お役に立てれば!
Just put your files in "app/assets/images/" and in your view you have to use:
<%= image_path "exemple.png" %>
Or you can directly generate img tag with:
<%= image_tag "exemple.png" %>