Search code examples
htmlcssscrollresponsive-design

My HTML or CSS prevents me from scrolling down on mobile sized screens


The title pretty much says what my issue is. I did a few google searches and couldn't find anything helpful so I came here. Here is the link to the site: https://aquamarine-catharina-45.tiiny.site/

I changed from ".container" having the properties: position: fixed; and left: 35% to just margin-left: 35% thinking that may fix it but it didn't.

edit: Pay no attention to the second page I've already fixed that.


Solution

  • You have set the overflow-y property of the html element to hidden. Change it to visible.

    html{
    overflow-y: visible;
    }