I have several divs with background images, but none are showing up in any ios device (iphone + ipad). It works everywhere else.
I've cut the sizes of the photo down to be 635 x 635. I'm not sure if this is an issue with the images or with the css. Unfortunately I can't post links to the actual images. But here is a sample of the code I have:
The url to the image is generated by Thumbor.
.section {
position: relative;
width: 100%;
min-height: 100%;
padding-left: 10%;
display: block;
-webkit-background-size: cover;
-moz-background-size: cover;
-o-background-size: cover;
background-size: cover;
padding-top: auto;
padding-left: 0% !important;
}
.caption {
margin: 5%;
}
<section class="section" id="image_text3" style="background: url(//placehold.it/635/635) no-repeat fixed top;">
<div class="caption">
<p>caption</p>
</div>
</section>