How do I include a background image in Rails 4? I am trying to add it onto a div I have in my HTML. Currently, the image is in my /assets/images
directory.
HTML:
<header>
<div class="background_image">
</div>
</header>
CSS:
.background_image {
background: url(/assets/header-bg.jpg);
}
With the code I currently have, no images are being displayed