Post

[CSS] iPhone overscroll, user-scale 제어

css

1
2
3
4
5
6
7
8
9
10
11
12
13
*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
  overscroll-behavior-y: none;
  touch-action: pan-x pan -y;
}
This post is licensed under CC BY 4.0 by the author.