I'm using knockout to set the background image on some divs:
<div class="values" data-bind="foreach: values" >
<div class="cvsection" data-bind="style: {'background-image': backgroundimg}" style="background-repeat: no-repeat; background-size:100%;background-repeat: no-repeat; background-position: center bottom;">
<!-- Stuff inside the div -->
</div>
</div>
Where in my viewmodel, each value() has a property like:
backgroundimg: 'url(i/img.jpg)'
The background images show up as expected in Chrome and IE9, but not Firefox 15 or IE8. I don't see any javascript errors in the console or anything.
Do you think this is a problem with knockout, or some other CSS issue? Any help would be appreciated!