Reputation: 2953
How can I reference an image in rails erb file which is in inside the style tag?
<div class="item" style="background-image: url(images/slider/bg2.jpg)">
The above url will work in the html version when not using rails.
Upvotes: 0
Views: 171
Reputation: 3427
This should work
<div class="item" style="background-image: url(<%= asset_path('bg2.jpg') %>)">
Upvotes: 1