I've implemented a background image on the <body>
element of the following website: http://www.bestdiscointown.co.uk/dev/ - this is so that an image is displayed while the user is scrolling to the bottom of the page (the following screenshot shows this working in Firefox):
This is achieved with the following CSS and holds up well in the majority of web browsers:
body {
color: #fff;
font-family: 'proxima_nova_ththin';
background-image: url("custom-assets/img/body_bg.jpg");
background-position: center top;
background-repeat: no-repeat;
background-attachment: fixed;
}
However when viewed in Safari on iOS 9.3.5 the following issue occurs and the background image cuts off:
Is there a reason for this issue occurring, could it be that I have set
background-attachment: fixed;
?Can a fix be applied in my CSS to resolve this?