I\'m going bonkers. IE11 refuses to fill the entire area of a DIV with a background image, even though I\'ve set the background-size property to cover. Consider the followin
I've managed to fix the issue by applying the following CSS. I'm not a 100% happy with it, but it'll have to do.
If anyone runs into the same issue, test this fix, it may work depending on your scenario, maybe it won't.
.bg {
...
background-size: 100% 100%;
}
Holy crab-shoe on a stick ... well, this is kinda embarrassing.
The problem was: IE was zoomed out.
The solution: zoom in.
The CSS was working fine all along.