Answers for "how to block zoom in css in mobile view using css"

4

css zoom

.zoom50 {
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -o-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
}
Posted by: Guest on July-07-2021
0

css disable zoom on mobile

<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
Posted by: Guest on June-04-2021

Code answers related to "how to block zoom in css in mobile view using css"

Browse Popular Code Answers by Language