Search code examples
htmlcssmarkup

How to make a horizontal scroll when minifying window?


How to make a horizontal scroll when minifying window? I made overflow-x in body, but there is no horizontal scrolling and elements shifted - I need no shift. Link to html and css with images: https://drive.google.com/drive/folders/0ByQHLazSsLs-dF9TbzJUcWdSVms?usp=sharing


Solution

  • Just set the width of the body tag and apply overflow-x: scroll;

    body{
        overflow-x: scroll;
        width: 1200px;
    }
    

    I hope this will work fine for you.