Abhilash
Abhilash

Reputation: 2953

reference an image in rails from style tag

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

Answers (1)

Rahul Singh
Rahul Singh

Reputation: 3427

This should work

<div class="item" style="background-image: url(<%= asset_path('bg2.jpg') %>)">

Upvotes: 1

Related Questions