I have my page all set up perfectly and the height & width's are al开发者_如何学运维l working great. But I have a draggable element and if you drag it to the side/corner of the page, it starts shrinking the whole page instead of cutting off the element on the edge. The element is always visible where ever your dragging, its just the rest of the page shrinks.
I just want it to stay the same size as it is right now, and have the draggable element get cut off at the edge if a user drags it there. Anyway to do/fix this?
I am using this in my meta tag:
<meta name="viewport" content="user-scalable=yes, maximum-scale=1.7, width=device-width" />
Maybe the width=device-width has something to do with it?
You might try body { overflow:hidden; }
in your CSS (but I have not tested this).
精彩评论