Whenever I code a responsive website that can scale all the way down to the size of a watch, there is an overflow of white space off to the right of the viewport that enables the horizontal scroll bar. The fix is easy: wrap the body in a div, set its width to auto and overflow to hidden. My question is this: is this a common practice/method that a lot of you use or a common problem that a lot of you encounter? Is there a "cleaner" way around this?
And I am using this meta viewport tag:
<meta name="viewport" content="initial-scale=1.0, user-scalable=yes, width=device-width">