En mi caso particular cuando hago zoom este sólo se hace sobre lo que parece ser el borde de un select y de botones, si quito estos directamente no hace ningún zoom.
Qué se debe hacer o evitar para que el zoom funcione porque yo estoy muy perdido.
Gracias.
Código HTML:
Ver original
<!DOCTYPE html> <html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" > <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style type="text/css"> html { font-size: 10pt; } #supercapa {width: 100%; margin: 0px auto; padding: 0px; background:#C0C0C0} #capa1 {width: 35%; height: 93%; left:7.5%; top:7%; background-color: #FF0000; position:absolute;} #capa2 {width: 35%; height: 100%; right:7.5%; top:0%; background-color: #0000FF; position:absolute;} select::-ms-expand { display: none; } #mySelect{ position:absolute; display: inline-block; z-index: 3; -moz-appearance: none; -webkit-appearance: none; appearance:none; cursor: pointer; background: #a1b74b; left:18%; width: 14%; height: 6%; top: 3%; font-size:1.2vw; font-family:verdana; font-weight: bold; padding-left: 0.4%; color:#e2e3db; box-shadow: inset 3px 3px 3px rgba(255,255,255,.7), inset -2px -2px 3px rgba(0,0,0,.1), 2px 2px 10px rgba(0,0,0,.1); border: none !important; border-radius:2vw; } #mySelect:hover{ -moz-box-shadow: 0 0 18px #336600; -webkit-box-shadow: 0 0 18px #336600; box-shadow: 0 0 18px #336600; } </style> </head> <body> <div id='supercapa'> <select id="mySelect"> </select> </div> </body> </html>