I'm currently building a parallax site, it works on all browsers apart from the exception of IE8 due to using background-size.
I have tried ms filters just wondering if anyone else has a solution.
section {
width: 100%;
position: relative;
overflow-x: hidden;
z-index: 0;
}
.parallax__one {
background: url("../Images/parallex__bg__1.png") 0px 0 no-repeat fixed;
filter: progid:DXImageTransform.Microsoft.AlphaImageLoader( src='../Images/parallex__bg__1.png', sizingMethod='scale');
-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader( src='../Images/parallex__bg__1.png', sizingMethod='scale')";
/* background size */
-webkit-background-size: 100% 100%;
-moz-background-size: 100% 100%;
-ms-background-size: 100% 100%;
-o-background-size: 100% 100%;
background-size: 100% 100%;
}