Placez le fichier image que vous souhaitez utiliser dans app / assets / images. Dans le fichier html.haml où vous souhaitez utiliser l'image
html.haml
= image_tag src= "/assets/sample.png ", size: "50x50"
Placez le fichier image utilisé comme arrière-plan dans app / assets / images. Et dans le fichier css
css
background: image-url("sample.png ");
background-size: cover;
Recommended Posts