htmlcss

body height 100% displaying horizontal scroll


When I give height 100% to body tag its display horizontal scroll. I don't know where it comes from but when I set body height to 100% it displays a horizontal scroll.


Solution

  • use overflow-x: hidden;
    I reccoman you learn about overflow:https://www.w3schools.com/css/css_overflow.asp

    body{
        overflow-x: hidden;
    }