[Solved] What is it called when a page scrolling does not push the main image, instead, moves over it?
You could use your inspector and figure it out yourself next time. background-size: cover; For your second question: Different solutions are possible. The easiest one would be linking to an element using an anchor. <div id=”first-page”> <a id=”scrollto” href=”#second-page”>Scroll down</a> </div> <div id=”second-page”>Lorem Ipsum</div> You’ll probably want to smoothscroll to the second page. This can … Read more