I have this simple HTML DIV with background, where Image is not showing up in IE8. It's working on all other browsers.
I am using AngularJS by the way.
The div is:-
<div class="slide"
style="background-image:url(content/1.jpg);
background-repeat:no-repeat; min-width:955px;
min-height:420px; display:block;">
</div>
Thanks.
EDIT
I just checked and in IE the background is not there to begin with.
The tag in IE is being shown as :-
<div class="slide" style="min-width: 955px; min-height: 420px; display: block; background-repeat: no-repeat;">
Weird.