I'm trying to find a cross-browser solution which allows two background images - a linear gradient which is to be overlaid over a background image.
Specifically this needs to work in Internet Explorer 11.
I'm using inline styling on this occasion - currently I have:
<div id="the_big_picture" class="row section second_section" style="background-image: linear-gradient(180deg,#ffffff00 80%,#fffffffc 90%), url('img/the_big_picture_bg.jpg')"></div>
The above works fine in Chrome, Firefox and Safari but IE11 doesn't want to play ball.
Thanks in advance.