Home › Forums › CSS › [Solved] Full Page Backgrounds on iOS (background-size: cover) › Reply To: [Solved] Full Page Backgrounds on iOS (background-size: cover)
November 1, 2015 at 3:36 pm
#210422
Participant
Height 100vh fixed this for me
#wrapper {
background: url(“image”)
no-repeat center center fixed !important;
background-size: cover !important;
height: 100vh !important;
overflow: hidden !important;
}
#main {
height:100vh !important;
overflow: scroll !important;
-webkit-overflow-scrolling: touch !important;
}