Device-Bugs icon indicating copy to clipboard operation
Device-Bugs copied to clipboard

Fixed div scrolling

Open ebatgerel opened this issue 6 years ago • 1 comments

Hello guys. I have a trouble with when a element has fixed position. When its reaches bottom or reaches top scroll blocked. Then i tap twice anywhere of viewport scroll reworks. But its appears on IOS devices. If someone faced this problem please help me. Here is snippet

#home {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  display: flex;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;

  flex-wrap: wrap;
  justify-content: space-between;
}

ebatgerel avatar Feb 22 '19 01:02 ebatgerel

don’t use fixed in ios

codetodamoon avatar Sep 10 '19 01:09 codetodamoon