Home › Forums › Design › Scrolling iframes & hover drop downs not working on touch devices › Reply To: Scrolling iframes & hover drop downs not working on touch devices
January 6, 2018 at 4:40 am
#265019
Participant
It’s an IOS glitch. This is the extra piece of CSS I added which fixed it:
NB the width and height are for my iframe sizes. These can obviously be changed for your own size.
.scroll-wrapper {
display: inline-block;
-webkit-overflow-scrolling: touch !important;
overflow-y: auto !important;
}
.scroll-wrapper, .scroll-wrapper {
width: 100%;
height: 500px;
}