I am trying to make the horizontal scroll bar hidden so that the user cannot scroll . I have read somewhere that my body tag should contain a width of 100% and to set overflow-x:hidden but the following code but I can still scroll a bit on my mobile media query as shown below:
html, body {
background-color: silver;
height: 400%;
width: 100%;
overflow-x:hidden;
}