I noticed a rather strange behaviour on Android browser, I created a div and wrapped all content of a particular page lets call it index.php in the div after the body and set it to width:100%; and overflow-x:hidden; it works perfectly on Chrome, but to my utmost surprise ANdroid browser does not support overflow-x from my research on Google and stack overflow how do I igo about solving this problem.
<body>
<div style="overflow-x:hidden!important;width:100%!important;"> //PERFECT ON CHROME RESPECTS ALL RULES, BUT IMPERFECT ON ANDROID BROWSER.
</div>
</body>