Background images cannot be displayed on iPad.
P粉879517403
2023-07-25 11:58:00
<p>I placed a background image below the navigation bar so that when you scroll down, the navigation bar moves down with you. But when I view it on my iPad, I see that the background image appears a dark blue that's close to black. </p>
<pre class="brush:php;toolbar:false;">.background__image {
width: 100%;
background-image: url("https://background-image.jpg");
background-repeat: no-repeat;
background-position: center center;
background-attachment: fixed;
background-size: cover;
height: 800px;
text-align: center;
display: flex;
justify-content: center;
}</pre>
<p><br /></p>