Search code examples
htmlcssvue.jsbackgroundbackground-image

background image not showing vue.js


I've tried every combination that was given in the answers throughout the different sites. Here's my code.

<div class="circular" v-bind:style="{ 'background-image': 'url(' + require('../assets/kafa.jpg') + ')' }"></div>

The problem is (I think) that path is good, and image is found, it just won't show on the background (or anywhere for that matter).

And here is the image of the page and Inspect Elements

Thanks.


Solution

  • Okay, so I found the problem. I closed the tag in the same line, instead of wrapping whole template in that div.