I'm using user-scalable=no in my viewport meta tag to disable double tap zooming in iOS. Almost everything seems to work as I wanted except a few very small and specific spots still allow me to zoom by double tapping in the iPhone simulator. Why is this so? Is there some css or other meta tags that could negate the viewport meta tag settings in such small specific areas? Any ideas?
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1.0, minimum-scale=1.0">
...