Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS iOS/Safari Web Page Scrolling Issues [Fixed]

  • This topic is empty.
Viewing 1 post (of 1 total)
  • Author
    Posts
  • #257208
    .sc {
            -webkit-overflow-scrolling: touch;
        }
    

    Add this css code to style sheet and then add “sc” class on the page which that scroll issue. Like if you put finger on field and quickly scroll, but it doesnt scroll then put sc class on input field or add to its parent element.

    e.g.

    <div class="sc">
       <div class="form-group sc">
    
         </div>
         <div class="form-group sc">
    
         </div>
         <div class="form-group sc">
    
         </div>
         <div class="form-group sc">
    
         </div>
     </div>
    
Viewing 1 post (of 1 total)
  • The forum ‘CSS’ is closed to new topics and replies.